https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3dadc0c18b5224dae634f59f54f6025cc9cdc17e authored by PhistucK on 03 November 2018, 12:16:45 UTC
HTML/events/beforeunload - respect preventDefault().
Tip revision: 3dadc0c
idlharness.https.any.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

// https://w3c.github.io/server-timing/

promise_test(async () => {
  const idl = await fetch('/interfaces/server-timing.idl').then(r => r.text());
  const res = await fetch('/interfaces/resource-timing.idl').then(r => r.text());
  const perf = await fetch('/interfaces/performance-timeline.idl').then(r => r.text());

  const idl_array = new IdlArray();
  idl_array.add_idls(idl);
  idl_array.add_dependency_idls(res);
  idl_array.add_dependency_idls(perf);
  idl_array.add_objects({
    Performance: ['performance'],
  });
  idl_array.test();
}, 'Test server-timing IDL implementation');
back to top