| Index: Source/core/rendering/svg/RenderSVGImage.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGImage.cpp b/Source/core/rendering/svg/RenderSVGImage.cpp
|
| index ff1908ee1fbf27e07f8c8731fc7e2ef20ce7140d..2d882d7fbe1be2160bde81af0cf6c732892deea0 100644
|
| --- a/Source/core/rendering/svg/RenderSVGImage.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGImage.cpp
|
| @@ -105,8 +105,8 @@ void RenderSVGImage::layout()
|
| }
|
|
|
| if (m_needsBoundariesUpdate) {
|
| - m_repaintBoundingBox = m_objectBoundingBox;
|
| - SVGRenderSupport::intersectRepaintRectWithResources(this, m_repaintBoundingBox);
|
| + m_paintInvalidationBoundingBox = m_objectBoundingBox;
|
| + SVGRenderSupport::intersectPaintInvalidationRectWithResources(this, m_paintInvalidationBoundingBox);
|
|
|
| m_needsBoundariesUpdate = false;
|
| }
|
| @@ -132,7 +132,7 @@ void RenderSVGImage::paint(PaintInfo& paintInfo, const LayoutPoint&)
|
| return;
|
|
|
| FloatRect boundingBox = paintInvalidationRectInLocalCoordinates();
|
| - if (!SVGRenderSupport::paintInfoIntersectsRepaintRect(boundingBox, m_localTransform, paintInfo))
|
| + if (!SVGRenderSupport::paintInfoIntersectsPaintInvalidationRect(boundingBox, m_localTransform, paintInfo))
|
| return;
|
|
|
| PaintInfo childPaintInfo(paintInfo);
|
|
|