| Index: third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp b/third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp
|
| index 7b8c16b0e2bc488b452652045672baa696817db8..6f95120f85a5207e00a8fa9997b3e9afbb1fae51 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutDeprecatedFlexibleBox.cpp
|
| @@ -532,7 +532,7 @@ void LayoutDeprecatedFlexibleBox::layoutHorizontalBox(bool relayoutChildren)
|
| }
|
| } while (haveFlex);
|
|
|
| - LayoutBlock::finishDelayUpdateScrollInfo();
|
| + LayoutBlock::finishDelayUpdateScrollInfo(nullptr);
|
|
|
| if (remainingSpace > 0 && ((style()->isLeftToRightDirection() && style()->boxPack() != Start)
|
| || (!style()->isLeftToRightDirection() && style()->boxPack() != End))) {
|
| @@ -783,7 +783,7 @@ void LayoutDeprecatedFlexibleBox::layoutVerticalBox(bool relayoutChildren)
|
| }
|
| } while (haveFlex);
|
|
|
| - LayoutBlock::finishDelayUpdateScrollInfo();
|
| + LayoutBlock::finishDelayUpdateScrollInfo(nullptr);
|
|
|
| if (style()->boxPack() != Start && remainingSpace > 0) {
|
| // Children must be repositioned.
|
|
|