Index: Source/core/html/HTMLBRElement.cpp |
diff --git a/Source/core/html/HTMLBRElement.cpp b/Source/core/html/HTMLBRElement.cpp |
index 82e4607440a1e56326edf819e94a53bdf0aad1d5..11b02a308b1638fe742c83786f2d98c31fc09279 100644 |
--- a/Source/core/html/HTMLBRElement.cpp |
+++ b/Source/core/html/HTMLBRElement.cpp |
@@ -80,4 +80,9 @@ RenderObject* HTMLBRElement::createRenderer(RenderArena* arena, RenderStyle* sty |
return new (arena) RenderBR(this); |
} |
+void HTMLBRElement::acceptHeapVisitor(Visitor* visitor) const |
+{ |
+ HTMLElement::acceptHeapVisitor(visitor); |
+} |
+ |
} |