Index: Source/core/svg/SVGSVGElement.cpp |
diff --git a/Source/core/svg/SVGSVGElement.cpp b/Source/core/svg/SVGSVGElement.cpp |
index e350b3d02507e7b1351c35d00cdfad4f4eb71ebf..165e6b8315b6bce7b930109489572be5e2eedd3e 100644 |
--- a/Source/core/svg/SVGSVGElement.cpp |
+++ b/Source/core/svg/SVGSVGElement.cpp |
@@ -779,4 +779,10 @@ void SVGSVGElement::finishParsingChildren() |
sendSVGLoadEventIfPossible(); |
} |
+void SVGSVGElement::trace(Visitor* visitor) |
+{ |
+ SVGGraphicsElement::trace(visitor); |
haraken
2014/05/26 08:27:27
This should be a tail call.
kouhei (in TOK)
2014/05/26 08:55:28
Done.
|
+ visitor->trace(m_timeContainer); |
+} |
+ |
} |