Lines Matching refs:cell

85             // This only happens when borders are collapsed, since they end up affecting the border sides of the cell
96 const BorderValue& RenderTableRow::borderAdjoiningStartCell(const RenderTableCell* cell) const
98 ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
99 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
103 const BorderValue& RenderTableRow::borderAdjoiningEndCell(const RenderTableCell* cell) const
105 ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
106 // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
124 RenderObject* cell = beforeChild->previousSibling();
125 if (cell && cell->isTableCell() && cell->isAnonymous()) {
126 cell->addChild(child);
131 // If beforeChild is inside an anonymous cell, insert into the cell.
137 RenderTableCell* cell = RenderTableCell::createAnonymousWithParentRenderer(this);
138 addChild(cell, beforeChild);
139 cell->addChild(child);
146 RenderTableCell* cell = toRenderTableCell(child);
150 section()->addCell(cell, this);
153 RenderBox::addChild(cell, beforeChild);
173 RenderTableCell* cell = toRenderTableCell(child);
174 if (!cell->needsLayout() && paginated && view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(cell, cell->logicalTop()) != cell->pageLogicalOffset())
175 layouter.setChildNeedsLayout(cell);
178 cell->computeAndSetBlockDirectionMargins(table());
179 cell->layout();
256 // Paint the row background behind the cell.
258 RenderTableCell* cell = toRenderTableCell(child);
259 cell->paintBackgroundsBehindCell(paintInfo, paintOffset, this);