Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderTable.cpp1118 RenderObject* nextSection = section == m_head ? firstChild() : section->nextSibling(); in sectionBelow() local
1119 while (nextSection) { in sectionBelow()
1120 …if (nextSection->isTableSection() && nextSection != m_head && nextSection != m_foot && (!skipEmpty… in sectionBelow()
1122 nextSection = nextSection->nextSibling(); in sectionBelow()
1124 if (!nextSection && m_foot && (!skipEmptySections || m_foot->numRows())) in sectionBelow()
1125 nextSection = m_foot; in sectionBelow()
1126 return toRenderTableSection(nextSection); in sectionBelow()