| Index: Source/core/rendering/compositing/GraphicsLayerUpdater.cpp
|
| diff --git a/Source/core/rendering/compositing/GraphicsLayerUpdater.cpp b/Source/core/rendering/compositing/GraphicsLayerUpdater.cpp
|
| index db56c331697a2d185cba7906f06554045fbbc803..c27f6d0a28d91e94397ef718b1de47c3bcd8ac43 100644
|
| --- a/Source/core/rendering/compositing/GraphicsLayerUpdater.cpp
|
| +++ b/Source/core/rendering/compositing/GraphicsLayerUpdater.cpp
|
| @@ -166,11 +166,11 @@ GraphicsLayerUpdater::UpdateType GraphicsLayerUpdater::update(RenderLayer& layer
|
|
|
| // Note carefully: here we assume that the compositing state of all descendants have been updated already,
|
| // so it is legitimate to compute and cache the composited bounds for this layer.
|
| - mapping->updateCompositedBounds();
|
| + mapping->updateCompositedBounds(updateType);
|
|
|
| if (RenderLayerReflectionInfo* reflection = layer.reflectionInfo()) {
|
| if (reflection->reflectionLayer()->hasCompositedLayerMapping())
|
| - reflection->reflectionLayer()->compositedLayerMapping()->updateCompositedBounds();
|
| + reflection->reflectionLayer()->compositedLayerMapping()->updateCompositedBounds(ForceUpdate);
|
| }
|
|
|
| mapping->updateGraphicsLayerConfiguration();
|
|
|