2014-05-13 11:22:12 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2015-04-10 04:34:22 +03:00
|
|
|
* https://w3c.github.io/web-animations/#animationtimeline
|
2014-05-13 11:22:12 +04:00
|
|
|
*
|
2015-04-10 04:34:22 +03:00
|
|
|
* Copyright © 2015 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
2014-05-13 11:22:12 +04:00
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2015-01-08 07:53:24 +03:00
|
|
|
[Func="nsDocument::IsWebAnimationsEnabled"]
|
2014-05-13 11:22:12 +04:00
|
|
|
interface AnimationTimeline {
|
2014-10-20 08:55:45 +04:00
|
|
|
[BinaryName="currentTimeAsDouble"]
|
2014-05-13 11:22:12 +04:00
|
|
|
readonly attribute double? currentTime;
|
2014-10-20 08:55:45 +04:00
|
|
|
// Not yet implemented:
|
2015-04-21 04:22:09 +03:00
|
|
|
// Animation play (optional TimedItem? source = null);
|
|
|
|
// sequence<Animation> getAnimations ();
|
2014-05-13 11:22:12 +04:00
|
|
|
};
|