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

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

Issue 105273010: Web Animations API: Start implementation of timing input objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Change isnan to std:isnan Created 6 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 | « Source/core/animation/ElementAnimation.cpp ('k') | Source/core/animation/ElementAnimationTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/ElementAnimation.idl
diff --git a/Source/core/animation/ElementAnimation.idl b/Source/core/animation/ElementAnimation.idl
index 8bbbce7e0e2c61ee3bc645135dd6d9d3626779a3..a13aef12f84bd1b03dc4a45dc92eafd2528d972d 100644
--- a/Source/core/animation/ElementAnimation.idl
+++ b/Source/core/animation/ElementAnimation.idl
@@ -27,9 +27,10 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-
[
RuntimeEnabled=WebAnimationsAPI,
] partial interface Element {
- Animation animate(sequence<Dictionary> keyframes, optional double duration);
+ Animation animate(sequence<Dictionary> keyframes, Dictionary timingInput);
+ Animation animate(sequence<Dictionary> keyframes, double timingInput);
+ Animation animate(sequence<Dictionary> keyframes);
};
« no previous file with comments | « Source/core/animation/ElementAnimation.cpp ('k') | Source/core/animation/ElementAnimationTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698