Show
Ignore:
Timestamp:
05/25/06 15:17:38 (3 years ago)
Author:
eseidel
Message:

2006-05-25 Mitz Pettel <opendarwin.org@mitzpettel.com>

Reviewed by hyatt. Landed by eseidel.

Test: fast/table/border-collapsing/border-collapsing-head-foot.html

  • rendering/RenderTable.cpp: (WebCore::RenderTable::sectionAbove): Added. (WebCore::RenderTable::sectionBelow): Added. (WebCore::RenderTable::cellAbove): Changed to call sectionAbove. (WebCore::RenderTable::cellBelow): Changed to call sectionBelow.
  • rendering/RenderTable.h:
  • rendering/RenderTableCell.cpp: (WebCore::RenderTableCell::collapsedTopBorder): Changed to call sectionAbove. (WebCore::RenderTableCell::collapsedBottomBorder): Changed to call sectionBelow.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/rendering/RenderTable.h

    r14372 r14598  
    160160    virtual RenderObject* removeChildNode(RenderObject*); 
    161161 
     162    RenderTableSection* sectionAbove(const RenderTableSection*, bool skipEmptySections = false) const; 
     163    RenderTableSection* sectionBelow(const RenderTableSection*, bool skipEmptySections = false) const; 
     164 
    162165    RenderTableCell* cellAbove(const RenderTableCell*) const; 
    163166    RenderTableCell* cellBelow(const RenderTableCell*) const;