From af460fc464562566dc1534c0f61f53c2976b9bd7 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Sat, 13 Feb 2021 15:58:12 +0100 Subject: fix: webidl utils and align `Event` to spec (#9470) --- op_crates/web/04_global_interfaces.js | 70 +++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 op_crates/web/04_global_interfaces.js (limited to 'op_crates/web/04_global_interfaces.js') diff --git a/op_crates/web/04_global_interfaces.js b/op_crates/web/04_global_interfaces.js new file mode 100644 index 000000000..74697a42e --- /dev/null +++ b/op_crates/web/04_global_interfaces.js @@ -0,0 +1,70 @@ +"use strict"; +((window) => { + const { EventTarget } = window; + + const illegalConstructorKey = Symbol("illegalConstructorKey"); + + class Window extends EventTarget { + constructor(key = null) { + if (key !== illegalConstructorKey) { + throw new TypeError("Illegal constructor."); + } + super(); + } + + get [Symbol.toStringTag]() { + return "Window"; + } + } + + class WorkerGlobalScope extends EventTarget { + constructor(key = null) { + if (key != illegalConstructorKey) { + throw new TypeError("Illegal constructor."); + } + super(); + } + + get [Symbol.toStringTag]() { + return "WorkerGlobalScope"; + } + } + + class DedicatedWorkerGlobalScope extends WorkerGlobalScope { + constructor(key = null) { + if (key != illegalConstructorKey) { + throw new TypeError("Illegal constructor."); + } + super(); + } + + get [Symbol.toStringTag]() { + return "DedicatedWorkerGlobalScope"; + } + } + + window.__bootstrap = (window.__bootstrap || {}); + window.__bootstrap.globalInterfaces = { + DedicatedWorkerGlobalScope, + Window, + WorkerGlobalScope, + dedicatedWorkerGlobalScopeConstructorDescriptor: { + configurable: true, + enumerable: false, + value: DedicatedWorkerGlobalScope, + writable: true, + }, + windowConstructorDescriptor: { + configurable: true, + enumerable: false, + value: Window, + writable: true, + }, + workerGlobalScopeConstructorDescriptor: { + configurable: true, + enumerable: false, + value: WorkerGlobalScope, + writable: true, + }, + }; +})(this); -- cgit v1.2.3