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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.idl

Issue 1716673002: Web Animations: Throw exceptions for play/pause/reverse/finish with infinite end time (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « third_party/WebKit/Source/core/animation/Animation.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/Animation.idl
diff --git a/third_party/WebKit/Source/core/animation/Animation.idl b/third_party/WebKit/Source/core/animation/Animation.idl
index 3e8c75847423ffb9b0249a2110105141d1280ede..39c15efcaa4bb4d162f9f7216ac7462bcc491656 100644
--- a/third_party/WebKit/Source/core/animation/Animation.idl
+++ b/third_party/WebKit/Source/core/animation/Animation.idl
@@ -43,11 +43,10 @@ enum AnimationPlayState { "idle", "pending", "running", "paused", "finished" };
[Measure] attribute double playbackRate;
[Measure] readonly attribute AnimationPlayState playState;
[Measure, RaisesException] void finish();
- [Measure] void play();
- [Measure] void pause();
- [Measure] void reverse();
+ [Measure, RaisesException] void play();
+ [Measure, RaisesException] void pause();
+ [Measure, RaisesException] void reverse();
[Measure] attribute DOMString id;
-
[Measure] void cancel();
[Measure] attribute EventHandler onfinish;
[Measure] attribute EventHandler oncancel;
« no previous file with comments | « third_party/WebKit/Source/core/animation/Animation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698