Home | History | Annotate | Download | only in rendering

Lines Matching full:cell

80         // If beforeChild is inside an anonymous cell, insert into the cell.
86 RenderTableCell* cell = new (renderArena()) RenderTableCell(document() /* anonymous object */);
90 cell->setStyle(newStyle.release());
91 addChild(cell, beforeChild);
92 cell->addChild(child);
96 // If the next renderer is actually wrapped in an anonymous table cell, we need to go up and find that.
100 RenderTableCell* cell = toRenderTableCell(child);
104 section()->addCell(cell, this);
107 RenderBox::addChild(cell, beforeChild);
122 RenderTableCell* cell = toRenderTableCell(child);
124 cell->calcVerticalMargins();
125 cell->layout();
189 // Paint the row background behind the cell.
191 RenderTableCell* cell = toRenderTableCell(child);
192 cell->paintBackgroundsBehindCell(paintInfo, tx, ty, this);