Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderTableCell.cpp677 RenderStyle* tableStyle = table()->style(); in collapsedLeftBorder() local
678 if (tableStyle->isHorizontalWritingMode()) in collapsedLeftBorder()
679 return tableStyle->isLeftToRightDirection() ? collapsedStartBorder() : collapsedEndBorder(); in collapsedLeftBorder()
680 …return tableStyle->isFlippedBlocksWritingMode() ? collapsedAfterBorder() : collapsedBeforeBorder(); in collapsedLeftBorder()
685 RenderStyle* tableStyle = table()->style(); in collapsedRightBorder() local
686 if (tableStyle->isHorizontalWritingMode()) in collapsedRightBorder()
687 return tableStyle->isLeftToRightDirection() ? collapsedEndBorder() : collapsedStartBorder(); in collapsedRightBorder()
688 …return tableStyle->isFlippedBlocksWritingMode() ? collapsedBeforeBorder() : collapsedAfterBorder(); in collapsedRightBorder()
693 RenderStyle* tableStyle = table()->style(); in collapsedTopBorder() local
694 if (tableStyle->isHorizontalWritingMode()) in collapsedTopBorder()
[all …]
/external/webkit/Source/WebCore/accessibility/
DAccessibilityTable.cpp132 RenderStyle* tableStyle = table->style(); in isDataTable() local
133 if (!tableStyle) in isDataTable()
135 Color tableBGColor = tableStyle->visitedDependentColor(CSSPropertyBackgroundColor); in isDataTable()