| Index: Source/core/rendering/svg/SVGPathData.cpp
|
| diff --git a/Source/core/rendering/svg/SVGPathData.cpp b/Source/core/rendering/svg/SVGPathData.cpp
|
| index 7e59f825e6da7c5602e6e863e398374f3ffd840e..0e7691c1cbdb058bb1ebc965ac5ea94aaceb9138 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)->pointsCurrentValue();
|
| + SVGPointList& points = toSVGPolygonElement(element)->animatedPoints()->values();
|
| 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)->pointsCurrentValue();
|
| + SVGPointList& points = toSVGPolylineElement(element)->animatedPoints()->values();
|
| if (points.isEmpty())
|
| return;
|
|
|
|
|