Changeset 156816 in webkit for trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp
- Timestamp:
- Oct 2, 2013, 7:26:52 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderBlockLineLayout.cpp
r156618 r156816 1274 1274 // determineStartPosition first will break fast/repaint/line-flow-with-floats-9.html. 1275 1275 if (layoutState.isFullLayout() && hasInlineChild && !selfNeedsLayout()) { 1276 setNeedsLayout( true,MarkOnlyThis); // Mark as needing a full layout to force us to repaint.1276 setNeedsLayout(MarkOnlyThis); // Mark as needing a full layout to force us to repaint. 1277 1277 if (!view().doingFullRepaint() && hasLayer()) { 1278 1278 // Because we waited until we were already inside layout to discover … … 1867 1867 1868 1868 if (relayoutChildren || box->hasRelativeDimensions()) 1869 o->setChildNeedsLayout(true,MarkOnlyThis);1869 box->setChildNeedsLayout(MarkOnlyThis); 1870 1870 1871 1871 // If relayoutChildren is set and the child has percentage padding or an embedded content box, we also need to invalidate the childs pref widths. … … 1890 1890 if (layoutState.isFullLayout() || o->selfNeedsLayout()) 1891 1891 dirtyLineBoxesForRenderer(o, layoutState.isFullLayout()); 1892 o-> setNeedsLayout(false);1892 o->clearNeedsLayout(); 1893 1893 } 1894 1894 } … … 3451 3451 setLogicalTopForChild(o, logicalTopForChild(o) + marginBeforeForChild(o) + paginationStrut); 3452 3452 if (o->isRenderBlock()) 3453 toRenderBlock(o)->setChildNeedsLayout( true,MarkOnlyThis);3453 toRenderBlock(o)->setChildNeedsLayout(MarkOnlyThis); 3454 3454 o->layoutIfNeeded(); 3455 3455 // Save the old logical top before calling removePlacedObject which will set
Note:
See TracChangeset
for help on using the changeset viewer.