mirror of
https://github.com/servo/servo.git
synced 2025-10-16 16:29:18 +01:00
22 lines
639 B
JavaScript
22 lines
639 B
JavaScript
"use strict";
|
|
|
|
importScripts("/resources/testharness.js");
|
|
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");
|
|
|
|
idl_test(
|
|
["html"],
|
|
["wai-aria", "dom", "cssom", "touch-events", "uievents", "performance-timeline"],
|
|
idlArray => {
|
|
idlArray.add_untested_idls('typedef Window WindowProxy;');
|
|
idlArray.add_objects({
|
|
WorkerLocation: ['self.location'],
|
|
WorkerNavigator: ['self.navigator'],
|
|
EventSource: ['new EventSource("http://invalid")'],
|
|
Worker: [],
|
|
MessageEvent: ['new MessageEvent("message", { data: 5 })'],
|
|
DedicatedWorkerGlobalScope: ['self'],
|
|
});
|
|
}
|
|
);
|
|
|
|
done();
|