Changeset 93638 in webkit


Ignore:
Timestamp:
Aug 23, 2011 2:51:57 PM (13 years ago)
Author:
pkasting@chromium.org
Message:

Unreviewed, rolling out r93452.
http://trac.webkit.org/changeset/93452
https://bugs.webkit.org/show_bug.cgi?id=66423

Broke Leopard, Snowleopard, and Chromium bots

Source/WebCore:

  • xml/parser/XMLDocumentParserLibxml2.cpp:

(WebCore::XMLDocumentParser::XMLDocumentParser):

LayoutTests:

  • fast/parser/innerhtml-with-prefixed-elements.xhtml: Removed.
  • platform/chromium/test_expectations.txt:
  • platform/mac/fast/parser/innerhtml-with-prefixed-elements-expected.png: Removed.
  • platform/mac/fast/parser/innerhtml-with-prefixed-elements-expected.txt: Removed.
Location:
trunk
Files:
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r93635 r93638  
     12011-08-23  Peter Kasting  <pkasting@google.com>
     2
     3        Unreviewed, rolling out r93452.
     4        http://trac.webkit.org/changeset/93452
     5        https://bugs.webkit.org/show_bug.cgi?id=66423
     6
     7        Broke Leopard, Snowleopard, and Chromium bots
     8
     9        * fast/parser/innerhtml-with-prefixed-elements.xhtml: Removed.
     10        * platform/chromium/test_expectations.txt:
     11        * platform/mac/fast/parser/innerhtml-with-prefixed-elements-expected.png: Removed.
     12        * platform/mac/fast/parser/innerhtml-with-prefixed-elements-expected.txt: Removed.
     13
    1142011-08-23  Peter Kasting  <pkasting@google.com>
    215
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r93629 r93638  
    36213621BUGWK65462 VISTA : http/tests/cache/history-only-cached-subresource-loads-max-age-https.html = PASS TIMEOUT
    36223622
    3623 // May need rebaseline,
    3624 BUGWK66798 WIN LINUX : svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr.html = IMAGE
    3625 BUGWK66798 WIN LINUX : svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop.html = IMAGE
    3626 BUGWK66798 WIN LINUX : svg/custom/image-small-width-height.svg = IMAGE
     3623BUGWK66798 REBASELINE WIN LINUX : svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr.html = IMAGE
     3624BUGWK66798 REBASELINE WIN LINUX : svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop.html = IMAGE
     3625BUGWK66798 REBASELINE WIN LINUX : svg/custom/image-small-width-height.svg = IMAGE
    36273626
    36283627// Introduced in r92298, which might cause another test crashing.
     
    36743673
    36753674// New test in r93068
    3676 BUGWK66268 : editing/deleting/regional-indicators.html = TIMEOUT TEXT
     3675BUGWK66268 WIN MAC : editing/deleting/regional-indicators.html = TEXT
     3676BUGWK66268 LINUX RELEASE : editing/deleting/regional-indicators.html = TEXT
     3677BUGWK66268 LINUX DEBUG : editing/deleting/regional-indicators.html = TIMEOUT
    36773678
    36783679BUGWK66310 DEBUG : media/video-source-error.html = PASS TEXT
     
    36853686BUGWK66338 MAC : fast/repaint/scale-page-shrink.html = IMAGE
    36863687
    3687 // Needs new baseline.
    3688 BUGWK66671 : fast/block/float/fit_line_below_floats.html = IMAGE+TEXT
     3688BUGWK66671 REBASELINE WIN LINUX : fast/block/float/fit_line_below_floats.html = IMAGE+TEXT
    36893689
    36903690BUGWK66394 LINUX DEBUG : fast/canvas/webgl/data-view-crash.html = PASS CRASH
     
    37093709BUGV8_1634 : fast/js/const.html = TEXT
    37103710
    3711 // Needs new baseline.
    3712 BUGWK66662 : fast/block/float/floats-and-text-indent.html = IMAGE+TEXT
    3713 BUGWK66662 : fast/block/float/floats-and-text-indent-rl.html = IMAGE+TEXT
     3711BUGWK66662 REBASELINE WIN LINUX : fast/block/float/floats-and-text-indent.html = IMAGE+TEXT
     3712BUGWK66662 REBASELINE WIN LINUX : fast/block/float/floats-and-text-indent-rl.html = IMAGE+TEXT
    37143713
    37153714BUGWK66730 WIN : http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header.html = PASS TEXT
  • trunk/Source/WebCore/ChangeLog

    r93631 r93638  
     12011-08-23  Peter Kasting  <pkasting@google.com>
     2
     3        Unreviewed, rolling out r93452.
     4        http://trac.webkit.org/changeset/93452
     5        https://bugs.webkit.org/show_bug.cgi?id=66423
     6
     7        Broke Leopard, Snowleopard, and Chromium bots
     8
     9        * xml/parser/XMLDocumentParserLibxml2.cpp:
     10        (WebCore::XMLDocumentParser::XMLDocumentParser):
     11
    1122011-08-23  Ahmad Sharif  <asharif@chromium.org>
    213
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserLibxml2.cpp

    r93452 r93638  
    611611        return;
    612612
    613     for (; !elemStack.isEmpty(); elemStack.removeLast()) {
    614         Element* element = elemStack.last();
     613    for (Element* element = elemStack.last(); !elemStack.isEmpty(); elemStack.removeLast()) {
    615614        if (NamedNodeMap* attrs = element->attributes()) {
    616615            for (unsigned i = 0; i < attrs->length(); i++) {
Note: See TracChangeset for help on using the changeset viewer.