Index: Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
diff --git a/Source/core/rendering/svg/SVGRenderTreeAsText.cpp b/Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
index ab5fe5b33bad1be30c7c72d33cc3e8971d0c3285..9414ad4cc1c4bfe0630afdd18a9733b1f86dce55 100644 |
--- a/Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
+++ b/Source/core/rendering/svg/SVGRenderTreeAsText.cpp |
@@ -352,7 +352,7 @@ static TextStream& operator<<(TextStream& ts, const RenderSVGShape& shape) |
writeNameValuePair(ts, "cy", element->cyCurrentValue().value(lengthContext)); |
writeNameValuePair(ts, "r", element->rCurrentValue().value(lengthContext)); |
} else if (svgElement->hasTagName(SVGNames::polygonTag) || svgElement->hasTagName(SVGNames::polylineTag)) { |
- writeNameAndQuotedValue(ts, "points", toSVGPolyElement(svgElement)->pointList().valueAsString()); |
+ writeNameAndQuotedValue(ts, "points", toSVGPolyElement(svgElement)->pointsCurrentValue().valueAsString()); |
} else if (svgElement->hasTagName(SVGNames::pathTag)) { |
String pathString; |
// FIXME: We should switch to UnalteredParsing here - this will affect the path dumping output of dozens of tests. |