Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: LayoutTests/web-animations-api/timeline-updates-players.html

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use new API in layout tests Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698