Changeset 91349 in webkit


Ignore:
Timestamp:
Jul 20, 2011 2:21:51 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r91285.
http://trac.webkit.org/changeset/91285
https://bugs.webkit.org/show_bug.cgi?id=64854

"Assertion hit in svg/custom/crash-textPath-attributes.html"
(Requested by mihnea on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-07-20

Source/WebCore:

  • rendering/RenderObjectChildList.cpp:

(WebCore::RenderObjectChildList::updateBeforeAfterContent):

LayoutTests:

  • fast/dynamic/hover-before-position-after-style-change-expected.txt: Removed.
  • fast/dynamic/hover-before-position-after-style-change.html: Removed.
Location:
trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r91346 r91349  
     12011-07-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r91285.
     4        http://trac.webkit.org/changeset/91285
     5        https://bugs.webkit.org/show_bug.cgi?id=64854
     6
     7        "Assertion hit in svg/custom/crash-textPath-attributes.html"
     8        (Requested by mihnea on #webkit).
     9
     10        * fast/dynamic/hover-before-position-after-style-change-expected.txt: Removed.
     11        * fast/dynamic/hover-before-position-after-style-change.html: Removed.
     12
    1132011-07-20  Boris Smus  <smus@chromium.org>
    214
  • trunk/Source/WebCore/ChangeLog

    r91348 r91349  
     12011-07-20  Sheriff Bot  <webkit.review.bot@gmail.com>
     2
     3        Unreviewed, rolling out r91285.
     4        http://trac.webkit.org/changeset/91285
     5        https://bugs.webkit.org/show_bug.cgi?id=64854
     6
     7        "Assertion hit in svg/custom/crash-textPath-attributes.html"
     8        (Requested by mihnea on #webkit).
     9
     10        * rendering/RenderObjectChildList.cpp:
     11        (WebCore::RenderObjectChildList::updateBeforeAfterContent):
     12
    1132011-07-20  Yury Semikhatsky  <yurys@chromium.org>
    214
  • trunk/Source/WebCore/rendering/RenderObjectChildList.cpp

    r91285 r91349  
    411411   
    412412    RenderObject* insertBefore = (type == BEFORE) ? owner->virtualChildren()->firstChild() : 0;
    413     if (insertBefore && insertBefore->isAnonymousBlock() && insertBefore->childrenInline()) {
    414         // We are going to add the "before" element. We have to check whether the "insertBefore" element
    415         // is an anonymous block with inline children. If it is, then we should insert the "before" element
    416         // before the first inline child of the anonymous block, otherwise we will end up with the "before"
    417         // element in a different block.
    418         insertBefore = insertBefore->firstChild();
    419     }
    420413
    421414    // Generated content consists of a single container that houses multiple children (specified
Note: See TracChangeset for help on using the changeset viewer.