| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index 08b8d3ed6a9655b519f22145c83b2d22850a822c..afcede232da32081d925625f3f4c3c6323420a79 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -3281,4 +3281,13 @@ bool Element::supportsStyleSharing() const
|
| return true;
|
| }
|
|
|
| +void Element::trace(Visitor* visitor)
|
| +{
|
| + // FIXME: Oilpan: Perform this tracing directly on the element
|
| + // rare data once that is in the heap.
|
| + if (hasRareData())
|
| + elementRareData()->trace(visitor);
|
| + ContainerNode::trace(visitor);
|
| +}
|
| +
|
| } // namespace WebCore
|
|
|