Bug 1539614 [wpt PR 16077] - HTML: move textarea tests together, a=testonly
[gecko.git] / testing / web-platform / tests / worklets / idlharness.worker.js
blob827dd02c4c53292b534677454c11264f415678a5
1 importScripts("/resources/testharness.js");
2 importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");
4 // https://drafts.css-houdini.org/worklets/
6 promise_test(async () => {
7   const idl = await fetch('/interfaces/worklets.idl').then(r => r.text());
9   const idl_array = new IdlArray();
10   idl_array.add_idls(idl);
11   idl_array.test();
12 }, 'worklets interfaces');
13 done();