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

Unified Diff: core/animation/AnimationEffectTiming.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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
« no previous file with comments | « core/animation/AnimationEffectReadOnly.idl ('k') | core/animation/AnimationNode.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/animation/AnimationEffectTiming.idl
diff --git a/core/animation/AnimationEffectTiming.idl b/core/animation/AnimationEffectTiming.idl
new file mode 100644
index 0000000000000000000000000000000000000000..59a395e5b6a7af6ec086bbf71cdc9cdcf13c34d8
--- /dev/null
+++ b/core/animation/AnimationEffectTiming.idl
@@ -0,0 +1,22 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// https://w3c.github.io/web-animations/#the-animationeffecttiming-interface
+// TODO(dstockwell): Should extend AnimationEffectTimingReadOnly
+
+[
+ RuntimeEnabled=WebAnimationsAPI,
+ WillBeGarbageCollected,
+] interface AnimationEffectTiming {
+ attribute double delay;
+ attribute double endDelay;
+ attribute DOMString fill;
+ attribute double iterationStart;
+ attribute unrestricted double iterations;
+ attribute (unrestricted double or DOMString) duration;
+ // TODO(dstockwell): playbackRate has been removed from level 1.
+ attribute double playbackRate;
+ attribute DOMString direction;
+ attribute DOMString easing;
+};
« no previous file with comments | « core/animation/AnimationEffectReadOnly.idl ('k') | core/animation/AnimationNode.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698