Home | History | Annotate | Download | only in rendering

Lines Matching refs:currSection

567     RenderTableSection* currSection = section();
570 result = chooseBorder(result, CollapsedBorderValue(&currSection->style()->borderBefore(), currSection->style()->visitedDependentColor(before), BROWGROUP));
575 currSection = table->sectionAbove(currSection);
576 if (currSection) {
577 result = chooseBorder(CollapsedBorderValue(&currSection->style()->borderAfter(), currSection->style()->visitedDependentColor(after), BROWGROUP), result);
583 if (!currSection) {
637 RenderTableSection* currSection = section();
638 if (row() + rowSpan() >= currSection->numRows()) {
640 result = chooseBorder(result, CollapsedBorderValue(&currSection->style()->borderAfter(), currSection->style()->visitedDependentColor(after), BROWGROUP));
645 currSection = table->sectionBelow(currSection);
646 if (currSection) {
647 result = chooseBorder(result, CollapsedBorderValue(&currSection->style()->borderBefore(), currSection->style()->visitedDependentColor(before), BROWGROUP));
653 if (!currSection) {