| Index: third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/easing.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/easing.html b/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/easing.html
|
| index 6c3d305c92a128f1adb2cbe6a9b6d8e2a395fdbd..73cdf66dec4957831319c1d9586a71c2a645b3b5 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/easing.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/web-animations/interfaces/AnimationEffectTiming/easing.html
|
| @@ -11,6 +11,11 @@
|
| <script>
|
| 'use strict';
|
|
|
| +test(function(t) {
|
| + var anim = createDiv(t).animate(null);
|
| + assert_equals(anim.effect.timing.easing, 'linear');
|
| +}, 'Test default value');
|
| +
|
| function assert_progress(animation, currentTime, easingFunction) {
|
| animation.currentTime = currentTime;
|
| var portion = currentTime / animation.effect.timing.duration;
|
|
|