| Index: Source/core/rendering/RenderReplaced.cpp
|
| diff --git a/Source/core/rendering/RenderReplaced.cpp b/Source/core/rendering/RenderReplaced.cpp
|
| index 4602b335b3ae380412bdfbe431f1088574219879..634eefe7bf44f7f96e35cbb090c367835ebbef25 100644
|
| --- a/Source/core/rendering/RenderReplaced.cpp
|
| +++ b/Source/core/rendering/RenderReplaced.cpp
|
| @@ -563,7 +563,7 @@ bool RenderReplaced::isSelected() const
|
| ASSERT(0);
|
| return false;
|
| }
|
| -LayoutRect RenderReplaced::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer) const
|
| +LayoutRect RenderReplaced::clippedOverflowRectForPaintInvalidation(const RenderLayerModelObject* paintInvalidationContainer, const InvalidationTreeWalkState* invalidationTreeWalkState) const
|
| {
|
| if (style()->visibility() != VISIBLE && !enclosingLayer()->hasVisibleContent())
|
| return LayoutRect();
|
| @@ -571,7 +571,7 @@ LayoutRect RenderReplaced::clippedOverflowRectForPaintInvalidation(const RenderL
|
| // The selectionRect can project outside of the overflowRect, so take their union
|
| // for repainting to avoid selection painting glitches.
|
| LayoutRect r = isSelected() ? localSelectionRect() : visualOverflowRect();
|
| - mapRectToPaintInvalidationBacking(paintInvalidationContainer, r);
|
| + mapRectToPaintInvalidationBacking(paintInvalidationContainer, r, false /* fixed */, invalidationTreeWalkState);
|
| return r;
|
| }
|
|
|
|
|