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