Changeset 156816 in webkit for trunk/Source/WebCore/rendering/RenderMultiColumnBlock.cpp
- Timestamp:
- Oct 2, 2013, 7:26:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderMultiColumnBlock.cpp
r155825 r156816 117 117 RenderMultiColumnSet* multicolSet = toRenderMultiColumnSet(childBox); 118 118 if (multicolSet->calculateBalancedHeight(firstPass)) { 119 multicolSet->setChildNeedsLayout( true,MarkOnlyThis);119 multicolSet->setChildNeedsLayout(MarkOnlyThis); 120 120 needsRelayout = true; 121 121 } … … 125 125 // Layout again. Column balancing resulted in a new height. 126 126 neededRelayout = true; 127 m_flowThread->setChildNeedsLayout( true,MarkOnlyThis);128 setChildNeedsLayout( true,MarkOnlyThis);127 m_flowThread->setChildNeedsLayout(MarkOnlyThis); 128 setChildNeedsLayout(MarkOnlyThis); 129 129 if (firstPass) 130 130 statePusher.pop(); … … 171 171 172 172 if (relayoutChildren) 173 m_flowThread->setChildNeedsLayout( true,MarkOnlyThis);173 m_flowThread->setChildNeedsLayout(MarkOnlyThis); 174 174 175 175 setLogicalTopForChild(m_flowThread, borderAndPaddingBefore());
Note:
See TracChangeset
for help on using the changeset viewer.