Changeset 171917 in webkit


Ignore:
Timestamp:
Aug 1, 2014 9:15:26 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

ASSERTION FAILED: listNode in WebCore::RenderListItem::updateListMarkerNumbers
https://bugs.webkit.org/show_bug.cgi?id=134970

Patch by Renato Nagy <nagy.renato@stud.u-szeged.hu> on 2014-08-01
Reviewed by Zalan Bujtas.

Removed an unnecessary assert, because the null return value of enclosingList() is
handled properly after this assert.

  • rendering/RenderListItem.cpp:

(WebCore::RenderListItem::updateListMarkerNumbers):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r171911 r171917  
     12014-08-01  Renato Nagy  <nagy.renato@stud.u-szeged.hu>
     2
     3        ASSERTION FAILED: listNode in WebCore::RenderListItem::updateListMarkerNumbers
     4        https://bugs.webkit.org/show_bug.cgi?id=134970
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        Removed an unnecessary assert, because the null return value of enclosingList() is
     9        handled properly after this assert.
     10
     11        * rendering/RenderListItem.cpp:
     12        (WebCore::RenderListItem::updateListMarkerNumbers):
     13
    1142014-08-01  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    215
  • trunk/Source/WebCore/rendering/RenderListItem.cpp

    r170774 r171917  
    498498    Element* listNode = enclosingList(this);
    499499    // The list node can be the shadow root which has no renderer.
    500     ASSERT(listNode);
    501500    if (!listNode)
    502501        return;
Note: See TracChangeset for help on using the changeset viewer.