Home
last modified time | relevance | path

Searched refs:firstNonEmptySection (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderTable.cpp799 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderLeft() local
800 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderLeft()
801 firstNonEmptySection = sectionBelow(firstNonEmptySection, true); in calcBorderLeft()
803 if (firstNonEmptySection) { in calcBorderLeft()
804 const BorderValue& sb = firstNonEmptySection->style()->borderLeft(); in calcBorderLeft()
811 … const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, leftmostColumn); in calcBorderLeft()
858 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderRight() local
859 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderRight()
860 firstNonEmptySection = sectionBelow(firstNonEmptySection, true); in calcBorderRight()
862 if (firstNonEmptySection) { in calcBorderRight()
[all …]