| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index 383926f7d5dbcb74335fb52c4cef1da24fb1754d..9dd687d5184b8ed9cd4dc40d3870a16332dcff8f 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -360,7 +360,7 @@ ElementAnimations& Element::ensureElementAnimations()
|
| {
|
| ElementRareData& rareData = ensureElementRareData();
|
| if (!rareData.elementAnimations())
|
| - rareData.setElementAnimations(adoptPtrWillBeNoop(new ElementAnimations()));
|
| + rareData.setElementAnimations(new ElementAnimations);
|
| return *rareData.elementAnimations();
|
| }
|
|
|
|
|