| Index: Source/core/rendering/svg/SVGRenderSupport.cpp
|
| diff --git a/Source/core/rendering/svg/SVGRenderSupport.cpp b/Source/core/rendering/svg/SVGRenderSupport.cpp
|
| index 3c5ad628b90cb5cb59b8e32a6057608d19886fa7..f92dbf26e7182cc29a368cb7d8b634cb233e2f23 100644
|
| --- a/Source/core/rendering/svg/SVGRenderSupport.cpp
|
| +++ b/Source/core/rendering/svg/SVGRenderSupport.cpp
|
| @@ -151,12 +151,12 @@ void SVGRenderSupport::computeContainerBoundingBoxes(const RenderObject* contain
|
| repaintBoundingBox = strokeBoundingBox;
|
| }
|
|
|
| -bool SVGRenderSupport::paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, const PaintInfo& paintInfo)
|
| +bool SVGRenderSupport::paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, PaintInfo& paintInfo)
|
| {
|
| if (localTransform.isIdentity())
|
| - return localRepaintRect.intersects(paintInfo.rect);
|
| + return localRepaintRect.intersects(paintInfo.getRect());
|
|
|
| - return localTransform.mapRect(localRepaintRect).intersects(paintInfo.rect);
|
| + return localTransform.mapRect(localRepaintRect).intersects(paintInfo.getRect());
|
| }
|
|
|
| const RenderSVGRoot* SVGRenderSupport::findTreeRootObject(const RenderObject* start)
|
|
|