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: sky/engine/core/animation/AnimationPlayer.idl

Issue 760183003: Enable/Unprefix Animations & Transitions, add basic tests (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: patch for landing Created 6 years 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 | « sky/engine/core/animation/AnimationNode.idl ('k') | sky/engine/core/animation/AnimationTimeline.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/animation/AnimationPlayer.idl
diff --git a/sky/engine/core/animation/AnimationPlayer.idl b/sky/engine/core/animation/AnimationPlayer.idl
index 38f357e774886dc89cf23466b02e380c07cc34b3..90c95c2fbbb82ff8183862e4b4f4ce3ba5aa02da 100644
--- a/sky/engine/core/animation/AnimationPlayer.idl
+++ b/sky/engine/core/animation/AnimationPlayer.idl
@@ -32,17 +32,17 @@
NoInterfaceObject,
ActiveDOMObject,
] interface AnimationPlayer : EventTarget {
- [RuntimeEnabled=WebAnimationsAPI] attribute AnimationNode? source;
- [RuntimeEnabled=WebAnimationsAPI] attribute double startTime;
- [RuntimeEnabled=WebAnimationsAPI] attribute double currentTime;
- [RuntimeEnabled=WebAnimationsAPI] attribute double playbackRate;
- [RuntimeEnabled=WebAnimationsAPI] readonly attribute boolean paused;
- [RuntimeEnabled=WebAnimationsAPI] readonly attribute boolean finished;
- [RuntimeEnabled=WebAnimationsAPI] readonly attribute DOMString playState;
- [RuntimeEnabled=WebAnimationsAPI, RaisesException] void finish();
- [RuntimeEnabled=WebAnimationsAPI] void play();
- [RuntimeEnabled=WebAnimationsAPI] void pause();
- [RuntimeEnabled=WebAnimationsAPI] void reverse();
+ attribute AnimationNode? source;
+ attribute double startTime;
+ attribute double currentTime;
+ attribute double playbackRate;
+ readonly attribute boolean paused;
+ readonly attribute boolean finished;
+ readonly attribute DOMString playState;
+ [RaisesException] void finish();
+ void play();
+ void pause();
+ void reverse();
void cancel();
};
« no previous file with comments | « sky/engine/core/animation/AnimationNode.idl ('k') | sky/engine/core/animation/AnimationTimeline.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698