| Index: Source/core/rendering/svg/RenderSVGShape.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGShape.cpp b/Source/core/rendering/svg/RenderSVGShape.cpp
|
| index e76afaacc011b0ebf3e68fe1e499b59d1b20b15f..92e822d3146ad2acb68869289c1cf5e0e26301bc 100644
|
| --- a/Source/core/rendering/svg/RenderSVGShape.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGShape.cpp
|
| @@ -259,13 +259,4 @@ float RenderSVGShape::strokeWidth() const
|
| return style()->svgStyle().strokeWidth()->value(lengthContext);
|
| }
|
|
|
| -bool RenderSVGShape::hasSmoothStroke() const
|
| -{
|
| - const SVGRenderStyle& svgStyle = style()->svgStyle();
|
| - return svgStyle.strokeDashArray()->isEmpty()
|
| - && svgStyle.strokeMiterLimit() == SVGRenderStyle::initialStrokeMiterLimit()
|
| - && svgStyle.joinStyle() == SVGRenderStyle::initialJoinStyle()
|
| - && svgStyle.capStyle() == SVGRenderStyle::initialCapStyle();
|
| -}
|
| -
|
| }
|
|
|