https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5eb28eabd68d956e0d7e43c83ce4f38777549299 authored by Ms2ger on 10 May 2016, 08:33:02 UTC
fixup! Remove tests landed in #2984.
Tip revision: 5eb28ea
interfaces.worker.js
"use strict";

importScripts("/resources/testharness.js");
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");

var request = new XMLHttpRequest();
request.onload = function() {
  var idlArray = new IdlArray();
  var idls = request.responseText;
  idlArray.add_idls(idls);
  idlArray.add_objects({
    DedicatedWorkerGlobalScope: ['self'],
    WorkerNavigator: ['self.navigator'],
    WorkerLocation: ['self.location'],
  });
  idlArray.test();
  done();
};
request.open("GET", "interfaces.idl");
request.send();
back to top