Changeset 70285 in webkit


Ignore:
Timestamp:
Oct 21, 2010 7:45:57 PM (14 years ago)
Author:
rniwa@webkit.org
Message:

2010-10-21 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Kent Tamura.

REGRESSION(r70283): editing/execCommand/remove-format-elements.html fails on qt, gtk, and chromium
https://bugs.webkit.org/show_bug.cgi?id=48108

Modified the test to ignore the contents of keygen element.

  • editing/execCommand/remove-format-elements-expected.txt:
  • editing/execCommand/remove-format-elements.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r70284 r70285  
     12010-10-21  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Reviewed by Kent Tamura.
     4
     5        REGRESSION(r70283): editing/execCommand/remove-format-elements.html fails on qt, gtk, and chromium
     6        https://bugs.webkit.org/show_bug.cgi?id=48108
     7
     8        Modified the test to ignore the contents of keygen element.
     9
     10        * editing/execCommand/remove-format-elements-expected.txt:
     11        * editing/execCommand/remove-format-elements.html:
     12
    1132010-10-21  Yuzo Fujishima  <yuzo@google.com>
    214
  • trunk/LayoutTests/editing/execCommand/remove-format-elements-expected.txt

    r70283 r70285  
    22acronym, b, bdo, big, cite, code, dfn, em, font, i, ins, kbd, nobr, q, s, samp, small, strike, strong, sub, sup, tt, u, var
    33Preserved
    4 noscript, a, abbr, address, applet, area, article, aside, audio, base, basefont, bgsound, blockquote, body, br, button, canvas, caption, center, col, colgroup, command, datagrid, datalist, dcell, dcol, dd, del, details, dir, div, dl, drow, dt, embed, fieldset, figcaption, figure, footer, form, frame, frameset, h1, h2, h3, h4, h5, h6, head, header, hgroup, hr, html, iframe, image, img, input, isindex, label, layer, legend, li, link, listing, map, mark, marquee, menu, meta, meter, nav, noembed, noframes, nolayer, noscript, object, ol, optgroup, option, p, param, plaintext, pre, progress, rp, rt, ruby, script, section, select, source, span, style, summary, table, tbody, td, textarea, tfoot, th, thead, title, tr, track, ul, video, wbr, xmp
     4noscript, a, abbr, address, applet, area, article, aside, audio, base, basefont, bgsound, blockquote, body, br, button, canvas, caption, center, col, colgroup, command, datagrid, datalist, dcell, dcol, dd, del, details, dir, div, dl, drow, dt, embed, fieldset, figcaption, figure, footer, form, frame, frameset, h1, h2, h3, h4, h5, h6, head, header, hgroup, hr, html, iframe, image, img, input, isindex, keygen, label, layer, legend, li, link, listing, map, mark, marquee, menu, meta, meter, nav, noembed, noframes, nolayer, noscript, object, ol, optgroup, option, p, param, plaintext, pre, progress, rp, rt, ruby, script, section, select, source, span, style, summary, table, tbody, td, textarea, tfoot, th, thead, title, tr, track, ul, video, wbr, xmp
    55Exceptions
    6 keygen (<keygen><option>2048 (High Grade)</option><option>1024 (Medium Grade)</option><option>512 (Low Grade)</option>hello=1;</keygen> webkit=2;)
    76
  • trunk/LayoutTests/editing/execCommand/remove-format-elements.html

    r70283 r70285  
    9999    if (!test.firstChild || test.firstChild.nodeType == 3 /*TextNode*/)
    100100        addResult(document.getElementById('removed'), elementName)
    101     else if (contains(test, instance) && (instance.innerHTML == "" || instance.innerHTML == "hello=1;"))
     101    else if (contains(test, instance) && (instance.innerHTML == "" || instance.innerHTML == "hello=1;" || elementName == "keygen"))
    102102        addResult(document.getElementById('preserved'), elementName);
    103103    else
Note: See TracChangeset for help on using the changeset viewer.