Changeset 156816 in webkit for trunk/Source/WebCore/rendering/RenderTableRow.cpp
- Timestamp:
- Oct 2, 2013, 7:26:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderTableRow.cpp
r156738 r156816 83 83 // itself. 84 84 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) 85 cell->setChildNeedsLayout( true,MarkOnlyThis);85 cell->setChildNeedsLayout(MarkOnlyThis); 86 86 } 87 87 } … … 164 164 for (RenderTableCell* cell = firstCell(); cell; cell = cell->nextCell()) { 165 165 if (!cell->needsLayout() && paginated && view().layoutState()->pageLogicalHeight() && view().layoutState()->pageLogicalOffset(cell, cell->logicalTop()) != cell->pageLogicalOffset()) 166 cell->setChildNeedsLayout( true,MarkOnlyThis);166 cell->setChildNeedsLayout(MarkOnlyThis); 167 167 168 168 if (cell->needsLayout()) { … … 184 184 statePusher.pop(); 185 185 // RenderTableSection::layoutRows will set our logical height and width later, so it calls updateLayerTransform(). 186 setNeedsLayout(false);186 clearNeedsLayout(); 187 187 } 188 188
Note:
See TracChangeset
for help on using the changeset viewer.