Home | History | Annotate | Download | only in rendering

Lines Matching refs:tableStyle

677     RenderStyle* tableStyle = table()->style();
678 if (tableStyle->isHorizontalWritingMode())
679 return tableStyle->isLeftToRightDirection() ? collapsedStartBorder() : collapsedEndBorder();
680 return tableStyle->isFlippedBlocksWritingMode() ? collapsedAfterBorder() : collapsedBeforeBorder();
685 RenderStyle* tableStyle = table()->style();
686 if (tableStyle->isHorizontalWritingMode())
687 return tableStyle->isLeftToRightDirection() ? collapsedEndBorder() : collapsedStartBorder();
688 return tableStyle->isFlippedBlocksWritingMode() ? collapsedBeforeBorder() : collapsedAfterBorder();
693 RenderStyle* tableStyle = table()->style();
694 if (tableStyle->isHorizontalWritingMode())
695 return tableStyle->isFlippedBlocksWritingMode() ? collapsedAfterBorder() : collapsedBeforeBorder();
696 return tableStyle->isLeftToRightDirection() ? collapsedStartBorder() : collapsedEndBorder();
701 RenderStyle* tableStyle = table()->style();
702 if (tableStyle->isHorizontalWritingMode())
703 return tableStyle->isFlippedBlocksWritingMode() ? collapsedBeforeBorder() : collapsedAfterBorder();
704 return tableStyle->isLeftToRightDirection() ? collapsedEndBorder() : collapsedStartBorder();
751 RenderStyle* tableStyle = table()->style();
752 if (tableStyle->isHorizontalWritingMode())
753 return tableStyle->isLeftToRightDirection() ? borderHalfStart(outer) : borderHalfEnd(outer);
754 return tableStyle->isFlippedBlocksWritingMode() ? borderHalfAfter(outer) : borderHalfBefore(outer);
759 RenderStyle* tableStyle = table()->style();
760 if (tableStyle->isHorizontalWritingMode())
761 return tableStyle->isLeftToRightDirection() ? borderHalfEnd(outer) : borderHalfStart(outer);
762 return tableStyle->isFlippedBlocksWritingMode() ? borderHalfBefore(outer) : borderHalfAfter(outer);
767 RenderStyle* tableStyle = table()->style();
768 if (tableStyle->isHorizontalWritingMode())
769 return tableStyle->isFlippedBlocksWritingMode() ? borderHalfAfter(outer) : borderHalfBefore(outer);
770 return tableStyle->isLeftToRightDirection() ? borderHalfStart(outer) : borderHalfEnd(outer);
775 RenderStyle* tableStyle = table()->style();
776 if (tableStyle->isHorizontalWritingMode())
777 return tableStyle->isFlippedBlocksWritingMode() ? borderHalfBefore(outer) : borderHalfAfter(outer);
778 return tableStyle->isLeftToRightDirection() ? borderHalfEnd(outer) : borderHalfStart(outer);