Index: Source/core/svg/SVGTextPositioningElement.cpp |
diff --git a/Source/core/svg/SVGTextPositioningElement.cpp b/Source/core/svg/SVGTextPositioningElement.cpp |
index 99b3aa37388d2abcfd935603b925e9c800812401..bf21522eaed5f4ab26b64d42a1153b2bfd7fc4df 100644 |
--- a/Source/core/svg/SVGTextPositioningElement.cpp |
+++ b/Source/core/svg/SVGTextPositioningElement.cpp |
@@ -44,6 +44,16 @@ SVGTextPositioningElement::SVGTextPositioningElement(const QualifiedName& tagNam |
addToPropertyMap(m_rotate); |
} |
+void SVGTextPositioningElement::trace(Visitor* visitor) |
+{ |
+ visitor->trace(m_x); |
+ visitor->trace(m_y); |
+ visitor->trace(m_dx); |
+ visitor->trace(m_dy); |
+ visitor->trace(m_rotate); |
+ SVGTextContentElement::trace(visitor); |
+} |
+ |
bool SVGTextPositioningElement::isSupportedAttribute(const QualifiedName& attrName) |
{ |
DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |