| Index: Source/core/rendering/svg/RenderSVGText.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGText.cpp b/Source/core/rendering/svg/RenderSVGText.cpp
|
| index 02508a63f98ad1bd444b768cc21a00253fbaa0dc..3fc2cbe885d12ac0a3e24c50420ff3de741ef68c 100644
|
| --- a/Source/core/rendering/svg/RenderSVGText.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGText.cpp
|
| @@ -94,10 +94,10 @@ const RenderSVGText* RenderSVGText::locateRenderSVGTextAncestor(const RenderObje
|
| return toRenderSVGText(start);
|
| }
|
|
|
| -void RenderSVGText::mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect& rect, bool fixed) const
|
| +void RenderSVGText::mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect& rect, bool fixed, const InvalidationTreeWalkState* invalidationTreeWalkState) const
|
| {
|
| FloatRect repaintRect = rect;
|
| - computeFloatRectForPaintInvalidation(paintInvalidationContainer, repaintRect, fixed);
|
| + computeFloatRectForPaintInvalidation(paintInvalidationContainer, repaintRect, fixed, invalidationTreeWalkState);
|
| rect = enclosingLayoutRect(repaintRect);
|
| }
|
|
|
|
|