diff options
Diffstat (limited to 'testing/web-platform/tests/animation-worklet/idlharness.any.js')
-rw-r--r-- | testing/web-platform/tests/animation-worklet/idlharness.any.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/animation-worklet/idlharness.any.js b/testing/web-platform/tests/animation-worklet/idlharness.any.js new file mode 100644 index 0000000000..a53ac739f3 --- /dev/null +++ b/testing/web-platform/tests/animation-worklet/idlharness.any.js @@ -0,0 +1,18 @@ +// META: script=/resources/WebIDLParser.js +// META: script=/resources/idlharness.js +// META: timeout=long + +'use strict'; + +// https://wicg.github.io/animation-worklet/ + +idl_test( + ['css-animation-worklet'], + ['web-animations', 'html', 'cssom', 'dom'], + idl_array => { + idl_array.add_objects({ + WorkletAnimation: ['new WorkletAnimation("name")'], + // TODO: WorkletGroupEffect + }); + } +); |