Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderTable.cpp868 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderStart() local
869 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderStart()
870 firstNonEmptySection = sectionBelow(firstNonEmptySection, true); in calcBorderStart()
872 if (firstNonEmptySection) { in calcBorderStart()
873 const BorderValue& sb = firstNonEmptySection->style()->borderStart(); in calcBorderStart()
880 const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, 0); in calcBorderStart()
926 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderEnd() local
927 if (firstNonEmptySection && !firstNonEmptySection->numRows()) in calcBorderEnd()
928 firstNonEmptySection = sectionBelow(firstNonEmptySection, true); in calcBorderEnd()
930 if (firstNonEmptySection) { in calcBorderEnd()
[all …]