| Index: third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js
|
| diff --git a/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js b/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js
|
| index aae95be78ade4194b406131d03b361fca0235d51..69276e9746c86463b98465e5f78b94823339117d 100644
|
| --- a/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js
|
| +++ b/third_party/WebKit/LayoutTests/animations/interpolation/resources/interpolation-test.js
|
| @@ -150,13 +150,13 @@
|
| [property]: to,
|
| });
|
| }
|
| - target.animate(keyframes, {
|
| + var animation = target.animate(keyframes, {
|
| fill: 'forwards',
|
| duration: 1,
|
| easing: createEasing(at),
|
| - delay: -0.5,
|
| - iterations: 0.5,
|
| });
|
| + animation.pause();
|
| + animation.currentTime = 0.5;
|
| },
|
| rebaseline: false,
|
| };
|
|
|