Changeset 154323 in webkit


Ignore:
Timestamp:
Aug 20, 2013 5:47:57 AM (11 years ago)
Author:
Antti Koivisto
Message:

<https://webkit.org/b/120023> REGRESSION(r154257): svg/custom/bug78807.svg and svg/custom/use-invalid-style.svg failing

Source/WebCore:

Reviewed by Andreas Kling.

  • xml/XMLErrors.cpp:

(WebCore::XMLErrors::insertErrorMessageBlock): "reattach" had accidentally turned into "detach" in refactoring.

LayoutTests:

Reviewed by by Andreas Kling.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r154320 r154323  
     12013-08-20  Antti Koivisto  <antti@apple.com>
     2
     3        <https://webkit.org/b/120023> REGRESSION(r154257): svg/custom/bug78807.svg and svg/custom/use-invalid-style.svg failing
     4
     5        Reviewed by by Andreas Kling.
     6
     7        * TestExpectations: Unskip.
     8
    192013-08-20  Antti Koivisto  <antti@apple.com>
    210
  • trunk/LayoutTests/TestExpectations

    r154293 r154323  
    3636webkit.org/b/119094 fast/forms/color/input-color-onchange-event.html [ Crash Pass ]
    3737
    38 webkit.org/b/120023 svg/custom/bug78807.svg [ Failure ]
    39 webkit.org/b/120023 svg/custom/use-invalid-style.svg [ Failure ]
    40 
    4138# This is an expected controlled crash. See webkit.org/b/119976 for a better solution.
    4239fast/css/giant-stylesheet-crash.html [ Crash ]
  • trunk/Source/WebCore/ChangeLog

    r154320 r154323  
     12013-08-20  Antti Koivisto  <antti@apple.com>
     2
     3        <https://webkit.org/b/120023> REGRESSION(r154257): svg/custom/bug78807.svg and svg/custom/use-invalid-style.svg failing
     4
     5        Reviewed by Andreas Kling.
     6
     7        * xml/XMLErrors.cpp:
     8        (WebCore::XMLErrors::insertErrorMessageBlock): "reattach" had accidentally turned into "detach" in refactoring.
     9
    1102013-08-20  Antti Koivisto  <antti@apple.com>
    211
  • trunk/Source/WebCore/xml/XMLErrors.cpp

    r154257 r154323  
    148148            // In general, rootElement shouldn't be attached right now, but it will be if there is a style element
    149149            // in the SVG content.
    150             Style::detachRenderTree(rootElement.get());
     150            Style::reattachRenderTree(rootElement.get());
    151151
    152152        documentElement = body.get();
Note: See TracChangeset for help on using the changeset viewer.