| Index: Source/core/rendering/RenderView.cpp
|
| diff --git a/Source/core/rendering/RenderView.cpp b/Source/core/rendering/RenderView.cpp
|
| index f2e0c0c4e048e2ec2747e35cc6700c6c82e145ad..766ec5282298f141e7ac050277e6ab11ef6ad78d 100644
|
| --- a/Source/core/rendering/RenderView.cpp
|
| +++ b/Source/core/rendering/RenderView.cpp
|
| @@ -210,7 +210,7 @@ bool RenderView::shouldDoFullRepaintForNextLayout() const
|
| // background positioning area resize.
|
| if (!m_compositor || !m_compositor->needsFixedRootBackgroundLayer(layer())) {
|
| if (backgroundRenderer->style()->hasFixedBackgroundImage()
|
| - && mustRepaintFillLayersOnHeightChange(*backgroundRenderer->style()->backgroundLayers()))
|
| + && mustInvalidateFillLayersPaintOnHeightChange(*backgroundRenderer->style()->backgroundLayers()))
|
| return true;
|
| }
|
| }
|
| @@ -500,11 +500,11 @@ void RenderView::repaintViewAndCompositedLayers()
|
| compositor()->repaintCompositedLayers();
|
| }
|
|
|
| -void RenderView::mapRectToRepaintBacking(const RenderLayerModelObject* repaintContainer, LayoutRect& rect, bool fixed) const
|
| +void RenderView::mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect& rect, bool fixed) const
|
| {
|
| // If a container was specified, and was not 0 or the RenderView,
|
| // then we should have found it by now.
|
| - ASSERT_ARG(repaintContainer, !repaintContainer || repaintContainer == this);
|
| + ASSERT_ARG(paintInvalidationContainer, !paintInvalidationContainer || paintInvalidationContainer == this);
|
|
|
| if (document().printing())
|
| return;
|
| @@ -527,7 +527,7 @@ void RenderView::mapRectToRepaintBacking(const RenderLayerModelObject* repaintCo
|
| }
|
|
|
| // Apply our transform if we have one (because of full page zooming).
|
| - if (!repaintContainer && layer() && layer()->transform())
|
| + if (!paintInvalidationContainer && layer() && layer()->transform())
|
| rect = layer()->transform()->mapRect(rect);
|
| }
|
|
|
|
|