| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index 17abe3fc80b7b7c95500e7651172b4da4b456598..4ca847c02e38ed951f6abf59ccd9f4336b454624 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -3296,10 +3296,9 @@ bool Element::supportsStyleSharing() const
|
|
|
| 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);
|
| + visitor->trace(elementRareData());
|
| +
|
| ContainerNode::trace(visitor);
|
| }
|
|
|
|
|