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

Unified Diff: Source/core/animation/AnimationPlayer.idl

Issue 556453004: Web Animations: Use null for unresolved startTime and currentTime in AnimationPlayer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert formatting change. Created 6 years, 3 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 | « Source/core/animation/AnimationPlayer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/AnimationPlayer.idl
diff --git a/Source/core/animation/AnimationPlayer.idl b/Source/core/animation/AnimationPlayer.idl
index fa467b6dfb2c3ed1edc5e14950d82052cebf396a..b4f91e20bff838ce0e73448eafda5f35ada8d4a5 100644
--- a/Source/core/animation/AnimationPlayer.idl
+++ b/Source/core/animation/AnimationPlayer.idl
@@ -36,8 +36,8 @@ enum AnimationPlayState { "idle", "pending", "running", "paused", "finished" };
ActiveDOMObject,
] interface AnimationPlayer : EventTarget {
[RuntimeEnabled=WebAnimationsAPI] attribute AnimationNode? source;
- [RuntimeEnabled=WebAnimationsPlaybackControl] attribute double startTime;
- [RuntimeEnabled=WebAnimationsPlaybackControl] attribute double currentTime;
+ [RuntimeEnabled=WebAnimationsPlaybackControl] attribute double? startTime;
+ [RuntimeEnabled=WebAnimationsPlaybackControl] attribute double? currentTime;
[RuntimeEnabled=WebAnimationsPlaybackControl] attribute double playbackRate;
[RuntimeEnabled=WebAnimationsPlaybackControl] readonly attribute AnimationPlayState playState;
[RuntimeEnabled=WebAnimationsPlaybackControl, RaisesException] void finish();
« no previous file with comments | « Source/core/animation/AnimationPlayer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698