| Index: Source/core/animation/AnimationTest.cpp
|
| diff --git a/Source/core/animation/AnimationTest.cpp b/Source/core/animation/AnimationTest.cpp
|
| index 6ad4d867c707f2009c494eef795b3703336e7509..2d6ea65a4fdf394603e883db2f4ac540d58907e9 100644
|
| --- a/Source/core/animation/AnimationTest.cpp
|
| +++ b/Source/core/animation/AnimationTest.cpp
|
| @@ -45,11 +45,11 @@ protected:
|
| template<typename T>
|
| static PassRefPtrWillBeRawPtr<Animation> createAnimation(Element* element, Vector<Dictionary> keyframeDictionaryVector, T timingInput, ExceptionState& exceptionState)
|
| {
|
| - return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState, true), timingInput);
|
| + return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState), timingInput);
|
| }
|
| static PassRefPtrWillBeRawPtr<Animation> createAnimation(Element* element, Vector<Dictionary> keyframeDictionaryVector, ExceptionState& exceptionState)
|
| {
|
| - return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState, true));
|
| + return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState));
|
| }
|
|
|
| v8::Isolate* m_isolate;
|
|
|