| Index: Source/core/html/HTMLDocument.cpp
|
| diff --git a/Source/core/html/HTMLDocument.cpp b/Source/core/html/HTMLDocument.cpp
|
| index 23de8f5f99ba70d600c602aecd9e4c5480ed267b..8815352358db0046cc1b2f777a76284447047bee 100644
|
| --- a/Source/core/html/HTMLDocument.cpp
|
| +++ b/Source/core/html/HTMLDocument.cpp
|
| @@ -414,4 +414,9 @@ bool HTMLDocument::isFrameSet() const
|
| return bodyElement && bodyElement->hasTagName(framesetTag);
|
| }
|
|
|
| +void HTMLDocument::acceptHeapVisitor(Visitor* visitor) const
|
| +{
|
| + Document::acceptHeapVisitor(visitor);
|
| +}
|
| +
|
| }
|
|
|