https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 38cb63e5ec8e6a14fb1094dee946800f5ea35bee authored by Josh Matthews on 01 August 2018, 18:31:04 UTC
servodriver: Fix reference to server configuration.
Tip revision: 38cb63e
interfaces.any.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

// https://w3c.github.io/DOM-Parsing/

promise_test(async () => {
  const dom = await fetch('/interfaces/dom.idl').then(r => r.text());
  const idl = await fetch('/interfaces/DOM-Parsing.idl').then(r => r.text());
  const idlArray = new IdlArray();
  idlArray.add_untested_idls(dom);
  idlArray.add_idls(idl);
  idlArray.test();
  done();
}, 'Test driver');
back to top