| Index: Source/core/html/HTMLOutputElement.cpp
|
| diff --git a/Source/core/html/HTMLOutputElement.cpp b/Source/core/html/HTMLOutputElement.cpp
|
| index eea089d140e2c5cb4759257e4db13425d0c63c1c..0300a0f7314f14fe4bb8a5ed648559471c54f14e 100644
|
| --- a/Source/core/html/HTMLOutputElement.cpp
|
| +++ b/Source/core/html/HTMLOutputElement.cpp
|
| @@ -128,4 +128,11 @@ void HTMLOutputElement::setDefaultValue(const String& value)
|
| setTextContent(value);
|
| }
|
|
|
| +
|
| +void HTMLOutputElement::trace(Visitor* visitor)
|
| +{
|
| + visitor->trace(m_tokens);
|
| + HTMLFormControlElement::trace(visitor);
|
| +}
|
| +
|
| } // namespace
|
|
|