| Index: Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp
|
| diff --git a/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp b/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp
|
| index 7f329c3b8029009541aa231f7f449120e43e28c1..c5d996549f6650a8c4d96627988dc7a3c8f7f7df 100644
|
| --- a/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp
|
| +++ b/Source/core/layout/compositing/CompositedDeprecatedPaintLayerMapping.cpp
|
| @@ -536,8 +536,10 @@ bool CompositedDeprecatedPaintLayerMapping::updateGraphicsLayerConfiguration()
|
| m_graphicsLayer->setContentsToPlatformLayer(context->platformLayer());
|
| layerConfigChanged = true;
|
| }
|
| - if (layoutObject->isLayoutPart())
|
| - layerConfigChanged = DeprecatedPaintLayerCompositor::parentFrameContentLayers(toLayoutPart(layoutObject));
|
| + if (layoutObject->isLayoutPart()) {
|
| + if (DeprecatedPaintLayerCompositor::parentFrameContentLayers(toLayoutPart(layoutObject)))
|
| + layerConfigChanged = true;
|
| + }
|
|
|
| // Changes to either the internal hierarchy or the mask layer have an impact
|
| // on painting phases, so we need to update when either are updated.
|
|
|