Chromium Code Reviews| Index: LayoutTests/web-animations-api/timeline-updates-players.html |
| diff --git a/LayoutTests/web-animations-api/timeline-updates-players.html b/LayoutTests/web-animations-api/timeline-updates-players.html |
| index f3b9e4265c08600a71d78e7ccb67975302009fde..bb67ee544572386db9c328b5138081476aeb5d3f 100644 |
| --- a/LayoutTests/web-animations-api/timeline-updates-players.html |
| +++ b/LayoutTests/web-animations-api/timeline-updates-players.html |
| @@ -8,7 +8,7 @@ |
| <script> |
| var element = document.getElementById('element'); |
| -var animation = new Animation(element, [{left: '0px'}, {left: '100px'}], 10); |
| +var animation = new KeyframeEffect(element, [{left: '0px'}, {left: '100px'}], 10); |
|
alancutter (OOO until 2018)
2015/05/05 01:04:51
s/animation/keyframeEffect/
s/players.html/animati
dstockwell
2015/05/05 03:33:25
Done! (but not the file)
|
| test(function() { |
| var player = document.timeline.play(animation); |
| player.finish(); |