https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 058920768c261da7597d8bba4c0737caef82f501 authored by Anne van Kesteren on 15 October 2018, 14:50:01 UTC
HTTP: message parsing with CR
Tip revision: 0589207
idlharness.worker.js
importScripts("/resources/testharness.js");
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");

// https://drafts.css-houdini.org/worklets/

promise_test(async () => {
  const idl = await fetch('/interfaces/worklets.idl').then(r => r.text());

  const idl_array = new IdlArray();
  idl_array.add_idls(idl);
  idl_array.test();
}, 'worklets interfaces');
done();
back to top