Changeset 156816 in webkit for trunk/Source/WebCore/rendering/RenderGrid.cpp
- Timestamp:
- Oct 2, 2013, 7:26:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderGrid.cpp
r156738 r156816 185 185 repainter.repaintAfterLayout(); 186 186 187 setNeedsLayout(false);187 clearNeedsLayout(); 188 188 } 189 189 … … 368 368 // 2) Relayout if the column track's used breadth changed OR the logical height is unavailable. 369 369 if (!child->needsLayout()) 370 child->setNeedsLayout( true,MarkOnlyThis);370 child->setNeedsLayout(MarkOnlyThis); 371 371 372 372 child->setOverrideContainingBlockContentLogicalWidth(gridAreaBreadthForChild(child, ForColumns, columnTracks)); … … 675 675 LayoutUnit overrideContainingBlockContentLogicalHeight = gridAreaBreadthForChild(child, ForRows, rowTracks); 676 676 if (oldOverrideContainingBlockContentLogicalWidth != overrideContainingBlockContentLogicalWidth || oldOverrideContainingBlockContentLogicalHeight != overrideContainingBlockContentLogicalHeight) 677 child->setNeedsLayout( true,MarkOnlyThis);677 child->setNeedsLayout(MarkOnlyThis); 678 678 679 679 child->setOverrideContainingBlockContentLogicalWidth(overrideContainingBlockContentLogicalWidth);
Note:
See TracChangeset
for help on using the changeset viewer.