Index: third_party/WebKit/Source/core/animation/KeyframeEffect.cpp |
diff --git a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp |
index a7d89ac50fdad1f05161a2a45024f3c67e8df9cb..e998008b18eb0010a88720c02a21ae95045759c1 100644 |
--- a/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp |
+++ b/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp |
@@ -66,8 +66,9 @@ KeyframeEffect* KeyframeEffect::create( |
Timing timing; |
if (!TimingInput::convert(duration, timing, exceptionState)) |
return nullptr; |
- return create(element, EffectInput::convert(element, effectInput, |
- executionContext, exceptionState), |
+ return create(element, |
+ EffectInput::convert(element, effectInput, executionContext, |
+ exceptionState), |
timing); |
} |
@@ -87,8 +88,9 @@ KeyframeEffect* KeyframeEffect::create( |
Document* document = element ? &element->document() : nullptr; |
if (!TimingInput::convert(timingInput, timing, document, exceptionState)) |
return nullptr; |
- return create(element, EffectInput::convert(element, effectInput, |
- executionContext, exceptionState), |
+ return create(element, |
+ EffectInput::convert(element, effectInput, executionContext, |
+ exceptionState), |
timing); |
} |
@@ -103,8 +105,9 @@ KeyframeEffect* KeyframeEffect::create( |
element->document(), |
UseCounter::AnimationConstructorKeyframeListEffectNoTiming); |
} |
- return create(element, EffectInput::convert(element, effectInput, |
- executionContext, exceptionState), |
+ return create(element, |
+ EffectInput::convert(element, effectInput, executionContext, |
+ exceptionState), |
Timing()); |
} |