Index: Source/core/svg/SVGLineElement.cpp |
diff --git a/Source/core/svg/SVGLineElement.cpp b/Source/core/svg/SVGLineElement.cpp |
index f2d2b91bf84b6a04037f13fbf741de5943401f59..1cf3b8407248f30324f2194e2e7c5910e5499b2c 100644 |
--- a/Source/core/svg/SVGLineElement.cpp |
+++ b/Source/core/svg/SVGLineElement.cpp |
@@ -39,6 +39,15 @@ inline SVGLineElement::SVGLineElement(Document& document) |
addToPropertyMap(m_y2); |
} |
+void SVGLineElement::trace(Visitor* visitor) |
+{ |
+ visitor->trace(m_x1); |
+ visitor->trace(m_y1); |
+ visitor->trace(m_x2); |
+ visitor->trace(m_y2); |
+ SVGGeometryElement::trace(visitor); |
+} |
+ |
DEFINE_NODE_FACTORY(SVGLineElement) |
bool SVGLineElement::isSupportedAttribute(const QualifiedName& attrName) |