| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGTransformableContainer.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGTransformableContainer.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGTransformableContainer.cpp
|
| index 9ce3b01a0e1ed8c65df73d84ace9bab582444e81..8d1af96c79bd28dcf912a58f18c4695c8e8f6268 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGTransformableContainer.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGTransformableContainer.cpp
|
| @@ -67,6 +67,11 @@ bool LayoutSVGTransformableContainer::isChildAllowed(
|
|
|
| void LayoutSVGTransformableContainer::setNeedsTransformUpdate() {
|
| setMayNeedPaintInvalidationSubtree();
|
| + if (RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled()) {
|
| + // The transform paint property relies on the SVG transform being up-to-date
|
| + // (see: PaintPropertyTreeBuilder::updateTransformForNonRootSVG).
|
| + setNeedsPaintPropertyUpdate();
|
| + }
|
| m_needsTransformUpdate = true;
|
| }
|
|
|
|
|