OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // http://w3c.github.io/web-animations/#the-animationeffecttimingreadonly-interf
ace |
| 6 // TODO(suzyh): Use enums instead of DOMStrings where specced |
| 7 |
| 8 [ |
| 9 RuntimeEnabled=WebAnimationsAPI, |
| 10 ] interface AnimationEffectTimingReadOnly { |
| 11 readonly attribute double delay; |
| 12 readonly attribute double endDelay; |
| 13 readonly attribute DOMString fill; |
| 14 readonly attribute double iterationStart; |
| 15 readonly attribute unrestricted double iterations; |
| 16 readonly attribute (unrestricted double or DOMString) duration; |
| 17 readonly attribute DOMString direction; |
| 18 readonly attribute DOMString easing; |
| 19 }; |
OLD | NEW |