| Index: Source/core/layout/LayoutFrameSet.cpp
|
| diff --git a/Source/core/layout/LayoutFrameSet.cpp b/Source/core/layout/LayoutFrameSet.cpp
|
| index 38d555f99b760882c57c7f2389b208f048397998..cd3c4efb5e2a8c8e44157798e8498a882e1c22a0 100644
|
| --- a/Source/core/layout/LayoutFrameSet.cpp
|
| +++ b/Source/core/layout/LayoutFrameSet.cpp
|
| @@ -421,7 +421,7 @@ void LayoutFrameSet::positionFrames()
|
| // has to be resized and itself resize its contents
|
| if (size != child->size()) {
|
| child->setSize(size);
|
| - child->setNeedsLayoutAndFullPaintInvalidation();
|
| + child->setNeedsLayoutAndFullPaintInvalidation(LayoutInvalidationReason::SizeChanged);
|
| child->layout();
|
| }
|
|
|
| @@ -461,7 +461,7 @@ void LayoutFrameSet::continueResizing(GridAxis& axis, int position)
|
| return;
|
| axis.m_deltas[axis.m_splitBeingResized - 1] += delta;
|
| axis.m_deltas[axis.m_splitBeingResized] -= delta;
|
| - setNeedsLayoutAndFullPaintInvalidation();
|
| + setNeedsLayoutAndFullPaintInvalidation(LayoutInvalidationReason::SizeChanged);
|
| }
|
|
|
| bool LayoutFrameSet::userResize(MouseEvent* evt)
|
|
|