| Index: Source/core/rendering/compositing/CompositingInputsUpdater.cpp
|
| diff --git a/Source/core/rendering/compositing/CompositingInputsUpdater.cpp b/Source/core/rendering/compositing/CompositingInputsUpdater.cpp
|
| index 4a79609f8d018bcd2e44a8dcb0fd41acaebe3335..5355a6c707c61d125effca372be88c102afe8076 100644
|
| --- a/Source/core/rendering/compositing/CompositingInputsUpdater.cpp
|
| +++ b/Source/core/rendering/compositing/CompositingInputsUpdater.cpp
|
| @@ -165,14 +165,15 @@ void CompositingInputsUpdater::updateRecursive(RenderLayer* layer, UpdateType up
|
| RenderLayer::DescendantDependentCompositingInputs descendantProperties;
|
| for (RenderLayer* child = layer->firstChild(); child; child = child->nextSibling()) {
|
| updateRecursive(child, updateType, info);
|
| +
|
| descendantProperties.hasDescendantWithClipPath |= child->hasDescendantWithClipPath() || child->renderer()->hasClipPath();
|
| + descendantProperties.hasDescendantWithBlendMode |= child->hasDescendantWithBlendMode() || child->renderer()->hasBlendMode();
|
| }
|
|
|
| - m_geometryMap.popMappingsToAncestor(layer->parent());
|
| -
|
| layer->updateDescendantDependentCompositingInputs(descendantProperties);
|
| -
|
| layer->didUpdateCompositingInputs();
|
| +
|
| + m_geometryMap.popMappingsToAncestor(layer->parent());
|
| }
|
|
|
| #if ENABLE(ASSERT)
|
|
|