Index: Source/core/rendering/svg/SVGPathData.cpp |
diff --git a/Source/core/rendering/svg/SVGPathData.cpp b/Source/core/rendering/svg/SVGPathData.cpp |
index d9085d668814f183a656f59db645d798afe2f30b..7e59f825e6da7c5602e6e863e398374f3ffd840e 100644 |
--- a/Source/core/rendering/svg/SVGPathData.cpp |
+++ b/Source/core/rendering/svg/SVGPathData.cpp |
@@ -74,7 +74,7 @@ static void updatePathFromPathElement(SVGElement* element, Path& path) |
static void updatePathFromPolygonElement(SVGElement* element, Path& path) |
{ |
- SVGPointList& points = toSVGPolygonElement(element)->pointList(); |
+ SVGPointList& points = toSVGPolygonElement(element)->pointsCurrentValue(); |
if (points.isEmpty()) |
return; |
@@ -89,7 +89,7 @@ static void updatePathFromPolygonElement(SVGElement* element, Path& path) |
static void updatePathFromPolylineElement(SVGElement* element, Path& path) |
{ |
- SVGPointList& points = toSVGPolylineElement(element)->pointList(); |
+ SVGPointList& points = toSVGPolylineElement(element)->pointsCurrentValue(); |
if (points.isEmpty()) |
return; |