https://github.com/web-platform-tests/wpt
Raw File
Tip revision: aa1f02a879a9b27b65e60acc905566d0398f92bc authored by Anne van Kesteren on 09 April 2018, 12:47:29 UTC
Remove generate_tests from NodeIterator.html
Tip revision: aa1f02a
interfaces.any.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

promise_test(async() => {
  const text = await fetch('/interfaces/url.idl')
    .then(response => response.text());
  const idlArray = new IdlArray();
  idlArray.add_idls(text);
  idlArray.add_objects({
    URL: ['new URL("http://foo")'],
    URLSearchParams: ['new URLSearchParams("hi=there&thank=you")']
  });
  idlArray.test();
  done();
}, 'Test driver');
back to top