| Index: third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| index ceda19d736df198810bb3f7c2d9de80fdc95a461..3ad08c2f8690a0b53c26c12ddbb85d11157304f1 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
|
| @@ -55,6 +55,7 @@
|
| #include "core/layout/shapes/ShapeOutsideInfo.h"
|
| #include "core/page/AutoscrollController.h"
|
| #include "core/page/Page.h"
|
| +#include "core/page/scrolling/ScrollingCoordinator.h"
|
| #include "core/page/scrolling/SnapCoordinator.h"
|
| #include "core/paint/BackgroundImageGeometry.h"
|
| #include "core/paint/BoxPaintInvalidator.h"
|
| @@ -335,6 +336,11 @@ void LayoutBox::styleDidChange(StyleDifference diff,
|
| }
|
| }
|
|
|
| + if (diff.transformChanged()) {
|
| + if (ScrollingCoordinator* scrollingCoordinator =
|
| + document().frame()->page()->scrollingCoordinator())
|
| + scrollingCoordinator->notifyTransformChanged(*this);
|
| + }
|
| // Non-atomic inlines should be LayoutInline or LayoutText, not LayoutBox.
|
| DCHECK(!isInline() || isAtomicInlineLevel());
|
| }
|
|
|