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 // https://w3c.github.io/web-animations/#the-keyframeeffect-interfaces |
| 6 |
| 7 [ |
| 8 // TODO(dstockwell): the third argument should be "optional (unrestricted do
uble or KeyframeEffectOptions) timing". |
| 9 Constructor(Element? target, (sequence<Dictionary> or Dictionary)? effect, o
ptional unrestricted double timing), |
| 10 Constructor(Element? target, (sequence<Dictionary> or Dictionary)? effect, K
eyframeEffectOptions timing), |
| 11 ConstructorCallWith=ExecutionContext, |
| 12 RaisesException=Constructor, |
| 13 RuntimeEnabled=WebAnimationsAPI, |
| 14 ] interface KeyframeEffectReadOnly : AnimationEffectReadOnly { |
| 15 }; |
OLD | NEW |