| Index: Source/core/rendering/svg/RenderSVGShape.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGShape.cpp b/Source/core/rendering/svg/RenderSVGShape.cpp
|
| index f8925f85e35f26fffbb59f35359db674830dea54..4de43e7a68444bd2a0c9876731f5a5571e6139f1 100644
|
| --- a/Source/core/rendering/svg/RenderSVGShape.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGShape.cpp
|
| @@ -111,8 +111,7 @@ bool RenderSVGShape::fillContains(const FloatPoint& point, bool requiresFill, co
|
| if (!m_fillBoundingBox.contains(point))
|
| return false;
|
|
|
| - bool hasFallback;
|
| - if (requiresFill && !RenderSVGResource::requestPaintingResource(ApplyToFillMode, *this, style(), hasFallback))
|
| + if (requiresFill && !SVGPaintServer::existsForRenderer(*this, style(), ApplyToFillMode))
|
| return false;
|
|
|
| return shapeDependentFillContains(point, fillRule);
|
| @@ -123,8 +122,7 @@ bool RenderSVGShape::strokeContains(const FloatPoint& point, bool requiresStroke
|
| if (!strokeBoundingBox().contains(point))
|
| return false;
|
|
|
| - bool hasFallback;
|
| - if (requiresStroke && !RenderSVGResource::requestPaintingResource(ApplyToStrokeMode, *this, style(), hasFallback))
|
| + if (requiresStroke && !SVGPaintServer::existsForRenderer(*this, style(), ApplyToStrokeMode))
|
| return false;
|
|
|
| return shapeDependentStrokeContains(point);
|
|
|