Index: Source/core/svg/SVGPolyElement.cpp |
diff --git a/Source/core/svg/SVGPolyElement.cpp b/Source/core/svg/SVGPolyElement.cpp |
index 4848a6a9408ef032f9480147d8757f659feb73b9..3c5c00da250a7c288749be9d16ed0b799ab8d8de 100644 |
--- a/Source/core/svg/SVGPolyElement.cpp |
+++ b/Source/core/svg/SVGPolyElement.cpp |
@@ -34,6 +34,12 @@ SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document) |
addToPropertyMap(m_points); |
} |
+void SVGPolyElement::trace(Visitor* visitor) |
+{ |
+ visitor->trace(m_points); |
+ SVGGeometryElement::trace(visitor); |
+} |
+ |
void SVGPolyElement::parseAttribute(const QualifiedName& name, const AtomicString& value) |
{ |
parseAttributeNew(name, value); |