Index: Source/core/dom/Comment.cpp |
diff --git a/Source/core/dom/Comment.cpp b/Source/core/dom/Comment.cpp |
index 9d66bd35f09fbe1245dda534dc53426d2406e41c..6c20cf7c4a5d19f7cd2ed9d00d1732ce304bce35 100644 |
--- a/Source/core/dom/Comment.cpp |
+++ b/Source/core/dom/Comment.cpp |
@@ -57,4 +57,9 @@ bool Comment::childTypeAllowed(NodeType) const |
return false; |
} |
+void Comment::acceptHeapVisitor(Visitor* visitor) const |
+{ |
+ CharacterData::acceptHeapVisitor(visitor); |
+} |
+ |
} // namespace WebCore |