summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/semantics/interface-objects/002.worker.js
blob: 0f514988bd2c6037ac0346c20f4a01615ed403f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
importScripts("/resources/testharness.js");
var unexpected = [
  // https://html.spec.whatwg.org/
  "SharedWorkerGlobalScope",
  "AbstractView",
  "AbstractWorker",
  "ApplicationCache",
  "Location",
  "Navigator",
  "Audio",
  "HTMLCanvasElement",
  "Path",
  "TextMetrics",
  "CanvasProxy",
  "CanvasRenderingContext2D",
  "DrawingStyle",
  "CanvasGradient",
  "CanvasPattern",
  "PopStateEvent",
  "HashChangeEvent",
  "PageTransitionEvent",
  // https://dom.spec.whatwg.org/
  "DOMImplementation",
  // https://streams.spec.whatwg.org/
  "ReadableStreamDefaultReader",
  "ReadableStreamBYOBReader",
  "ReadableStreamDefaultController",
  "ReadableByteStreamController",
  "WritableStreamDefaultWriter",
  "WritableStreamDefaultController",
  // http://w3c.github.io/IndexedDB/
  "IDBEnvironment",
  // https://www.w3.org/TR/2010/NOTE-webdatabase-20101118/
  "Database",
  // https://w3c.github.io/uievents/
  "UIEvent",
  "FocusEvent",
  "MouseEvent",
  "WheelEvent",
  "InputEvent",
  "KeyboardEvent",
  "CompositionEvent",
];
for (var i = 0; i < unexpected.length; ++i) {
  test(function () {
    assert_false(unexpected[i] in self);
  }, "The " + unexpected[i] + " interface object should not be exposed.");
}
done();