| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 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://wicg.github.io/animation-worklet/#worklet-animation-desc |
| 6 |
| 7 // TODO(smcgruer): Update constructor to match latest spec. |
| 8 [ |
| 9 Constructor(DOMString animatorName, |
| 10 sequence<KeyframeEffectReadOnly> effects, |
| 11 sequence<(DocumentTimeline or ScrollTimeline)> timelines, |
| 12 SerializedScriptValue options), |
| 13 RaisesException=Constructor, |
| 14 RuntimeEnabled=CompositorWorker |
| 15 ] interface WorkletAnimation { |
| 16 readonly attribute AnimationPlayState playState; |
| 17 void play(); |
| 18 void cancel(); |
| 19 }; |
| OLD | NEW |