| Index: Source/core/rendering/svg/RenderSVGText.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGText.cpp b/Source/core/rendering/svg/RenderSVGText.cpp
|
| index c1c94efd6423a954935802240d3e78003e9d1c9c..8536029524b2d11ead45109360663c1f815b4007 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::mapRectToRepaintBacking(const RenderLayerModelObject* repaintContainer, LayoutRect& rect, bool fixed) const
|
| +void RenderSVGText::mapRectToPaintInvalidationBacking(const RenderLayerModelObject* paintInvalidationContainer, LayoutRect& rect, bool fixed) const
|
| {
|
| FloatRect repaintRect = rect;
|
| - computeFloatRectForRepaint(repaintContainer, repaintRect, fixed);
|
| + computeFloatRectForPaintInvalidation(paintInvalidationContainer, repaintRect, fixed);
|
| rect = enclosingLayoutRect(repaintRect);
|
| }
|
|
|
| @@ -507,7 +507,7 @@ FloatRect RenderSVGText::strokeBoundingBox() const
|
| return strokeBoundaries;
|
| }
|
|
|
| -FloatRect RenderSVGText::repaintRectInLocalCoordinates() const
|
| +FloatRect RenderSVGText::paintInvalidationRectInLocalCoordinates() const
|
| {
|
| FloatRect repaintRect = strokeBoundingBox();
|
| SVGRenderSupport::intersectRepaintRectWithResources(this, repaintRect);
|
|
|