mirror of
https://github.com/servo/servo.git
synced 2025-08-21 05:15:33 +01:00
Update web-platform-tests to revision abd18b3e018d25ed668d179c905b7869dca5e239
This commit is contained in:
parent
908a642063
commit
158f7eec0e
117 changed files with 2997 additions and 434 deletions
5
tests/wpt/web-platform-tests/animation-worklet/META.yml
Normal file
5
tests/wpt/web-platform-tests/animation-worklet/META.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
spec: https://wicg.github.io/animation-worklet/
|
||||
suggested_reviewers:
|
||||
- flackr
|
||||
- majido
|
||||
- stephenmcgruer
|
|
@ -0,0 +1,16 @@
|
|||
// META: script=/resources/WebIDLParser.js
|
||||
// META: script=/resources/idlharness.js
|
||||
|
||||
'use strict';
|
||||
|
||||
// https://wicg.github.io/animation-worklet/
|
||||
|
||||
promise_test(async () => {
|
||||
const idl = await (await fetch('/interfaces/animation-worklet.idl')).text();
|
||||
const html = await (await fetch('/interfaces/html.idl')).text();
|
||||
const idlArray = new IdlArray();
|
||||
idlArray.add_idls(idl);
|
||||
idlArray.add_dependency_idls(html);
|
||||
idlArray.test();
|
||||
done();
|
||||
}, 'Test driver');
|
Loading…
Add table
Add a link
Reference in a new issue