| Index: Source/core/layout/LayoutBlock.cpp
|
| diff --git a/Source/core/layout/LayoutBlock.cpp b/Source/core/layout/LayoutBlock.cpp
|
| index 41e5dd46b4c4c71e193e3292c5d22210824e1702..6ffb90454fdbaa16e7efdbcf18defd118b6e70e0 100644
|
| --- a/Source/core/layout/LayoutBlock.cpp
|
| +++ b/Source/core/layout/LayoutBlock.cpp
|
| @@ -931,7 +931,7 @@ void LayoutBlock::addOverflowFromChildren()
|
| addOverflowFromBlockChildren();
|
| }
|
|
|
| -void LayoutBlock::computeOverflow(LayoutUnit oldClientAfterEdge, bool)
|
| +void LayoutBlock::computeOverflow(LayoutUnit oldClientAfterEdge)
|
| {
|
| m_overflow.clear();
|
|
|
| @@ -1096,7 +1096,7 @@ bool LayoutBlock::simplifiedLayout()
|
| // computeOverflow expects the bottom edge before we clamp our height. Since this information isn't available during
|
| // simplifiedLayout, we cache the value in m_overflow.
|
| LayoutUnit oldClientAfterEdge = hasOverflowModel() ? m_overflow->layoutClientAfterEdge() : clientLogicalBottom();
|
| - computeOverflow(oldClientAfterEdge, true);
|
| + computeOverflow(oldClientAfterEdge);
|
| }
|
|
|
| updateLayerTransformAfterLayout();
|
| @@ -2818,7 +2818,7 @@ bool LayoutBlock::recalcOverflowAfterStyleChange()
|
| return false;
|
|
|
| LayoutUnit oldClientAfterEdge = hasOverflowModel() ? m_overflow->layoutClientAfterEdge() : clientLogicalBottom();
|
| - computeOverflow(oldClientAfterEdge, true);
|
| + computeOverflow(oldClientAfterEdge);
|
|
|
| if (hasOverflowClip())
|
| layer()->scrollableArea()->updateAfterOverflowRecalc();
|
|
|