Ignore:
Timestamp:
Sep 24, 2013, 1:47:01 PM (12 years ago)
Author:
Antti Koivisto
Message:

Tighten table rendering code
https://bugs.webkit.org/show_bug.cgi?id=121860

Reviewed by Andreas Kling.

Hide firstChild/lastChild/nextSibling/previousSibling in table renderers,
expose correctly typed firstRow/nextCell etc instead.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/rendering/RenderTableCell.cpp

    r155908 r156355  
    740740            prevRow = parent()->previousSibling();
    741741        else
    742             prevRow = prevCell->section()->lastChild();
     742            prevRow = prevCell->section()->lastRow();
    743743   
    744744        if (prevRow) {
Note: See TracChangeset for help on using the changeset viewer.