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

Unified Diff: LayoutTests/web-animations-api/timed-item-specified-setters.html

Issue 1113173003: Web Animations: Update naming to reflect spec changes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: No, really. Created 5 years, 7 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/timed-item-specified-setters.html
diff --git a/LayoutTests/web-animations-api/timed-item-specified-setters.html b/LayoutTests/web-animations-api/timed-item-specified-setters.html
index f955ab2e7e30012cd2845e0eb0e5e2df2a15fbe3..5d268a48da0d824791bb3f27b161d45eb3388de8 100644
--- a/LayoutTests/web-animations-api/timed-item-specified-setters.html
+++ b/LayoutTests/web-animations-api/timed-item-specified-setters.html
@@ -10,8 +10,7 @@
var element = document.getElementById('e');
var keyframes = [{opacity: '1', offset: 0}, {opacity: '0', offset: 1}];
-var animation = new Animation(element, keyframes);
-var specifiedTiming = animation.timing;
+var specifiedTiming = new KeyframeEffect(element, keyframes).timing;
test(function() {
specifiedTiming.delay = 2;

Powered by Google App Engine
This is Rietveld 408576698