| Index: Source/core/dom/Element.cpp | 
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp | 
| index 1997e9d06bbfe6c070e576ec7ed8cd2d48d31677..17abe3fc80b7b7c95500e7651172b4da4b456598 100644 | 
| --- a/Source/core/dom/Element.cpp | 
| +++ b/Source/core/dom/Element.cpp | 
| @@ -168,11 +168,10 @@ Element::~Element() | 
| { | 
| ASSERT(needsAttach()); | 
|  | 
| +#if !ENABLE(OILPAN) | 
| if (hasRareData()) | 
| elementRareData()->clearShadow(); | 
| - | 
| -    if (hasActiveAnimations()) | 
| -        activeAnimations()->dispose(); | 
| +#endif | 
|  | 
| if (isCustomElement()) | 
| CustomElement::wasDestroyed(this); | 
| @@ -1431,7 +1430,7 @@ void Element::detach(const AttachContext& context) | 
|  | 
| if (ActiveAnimations* activeAnimations = data->activeAnimations()) { | 
| if (context.performingReattach) { | 
| -                // FIXME: We call detach from withing style recalc, so compositingState is not up to date. | 
| +                // FIXME: We call detach from within style recalc, so compositingState is not up to date. | 
| // https://code.google.com/p/chromium/issues/detail?id=339847 | 
| DisableCompositingQueryAsserts disabler; | 
|  | 
|  |