| Index: Source/core/layout/LayoutBlockFlow.cpp
|
| diff --git a/Source/core/layout/LayoutBlockFlow.cpp b/Source/core/layout/LayoutBlockFlow.cpp
|
| index 6def5acfdc7522184a2e0f307299ee1f25724e05..7bb4ad9a4e9ae66c2556691244488868a59f3069 100644
|
| --- a/Source/core/layout/LayoutBlockFlow.cpp
|
| +++ b/Source/core/layout/LayoutBlockFlow.cpp
|
| @@ -1699,11 +1699,10 @@ void LayoutBlockFlow::addOverflowFromFloats()
|
| }
|
| }
|
|
|
| -void LayoutBlockFlow::computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFloats)
|
| +void LayoutBlockFlow::computeOverflow(LayoutUnit oldClientAfterEdge)
|
| {
|
| - LayoutBlock::computeOverflow(oldClientAfterEdge, recomputeFloats);
|
| - if (recomputeFloats || createsNewFormattingContext() || hasSelfPaintingLayer())
|
| - addOverflowFromFloats();
|
| + LayoutBlock::computeOverflow(oldClientAfterEdge);
|
| + addOverflowFromFloats();
|
| }
|
|
|
| RootInlineBox* LayoutBlockFlow::createAndAppendRootInlineBox()
|
|
|