https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b4cd33ad178aa280fc59395236b0c9f55104ac5d authored by kritisingh1 on 25 March 2018, 09:18:50 UTC
test DOM XPath behaviour for root adjacent comments
Tip revision: b4cd33a
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