diff options
Diffstat (limited to 'op_crates/web')
-rw-r--r-- | op_crates/web/02_event.js | 1 | ||||
-rw-r--r-- | op_crates/web/03_abort_signal.js | 1 | ||||
-rw-r--r-- | op_crates/web/04_global_interfaces.js | 1 | ||||
-rw-r--r-- | op_crates/web/08_text_encoding.js | 1 | ||||
-rw-r--r-- | op_crates/web/12_location.js | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/op_crates/web/02_event.js b/op_crates/web/02_event.js index ac813d091..35112132e 100644 --- a/op_crates/web/02_event.js +++ b/op_crates/web/02_event.js @@ -1202,7 +1202,6 @@ window.dispatchEvent = EventTarget.prototype.dispatchEvent; window.addEventListener = EventTarget.prototype.addEventListener; window.removeEventListener = EventTarget.prototype.removeEventListener; - window.__bootstrap = (window.__bootstrap || {}); window.__bootstrap.eventTarget = { EventTarget, setEventTargetData, diff --git a/op_crates/web/03_abort_signal.js b/op_crates/web/03_abort_signal.js index b87a56ce3..e2648e778 100644 --- a/op_crates/web/03_abort_signal.js +++ b/op_crates/web/03_abort_signal.js @@ -120,7 +120,6 @@ window.AbortSignal = AbortSignal; window.AbortController = AbortController; - window.__bootstrap = window.__bootstrap || {}; window.__bootstrap.abortSignal = { add, signalAbort, diff --git a/op_crates/web/04_global_interfaces.js b/op_crates/web/04_global_interfaces.js index f6846d1cd..c3181fb66 100644 --- a/op_crates/web/04_global_interfaces.js +++ b/op_crates/web/04_global_interfaces.js @@ -44,7 +44,6 @@ } } - window.__bootstrap = (window.__bootstrap || {}); window.__bootstrap.globalInterfaces = { DedicatedWorkerGlobalScope, Window, diff --git a/op_crates/web/08_text_encoding.js b/op_crates/web/08_text_encoding.js index c84d7c18e..7e7d4a573 100644 --- a/op_crates/web/08_text_encoding.js +++ b/op_crates/web/08_text_encoding.js @@ -4559,7 +4559,6 @@ window.TextDecoder = TextDecoder; window.atob = atob; window.btoa = btoa; - window.__bootstrap = window.__bootstrap || {}; window.__bootstrap.encoding = { decode }; window.__bootstrap.base64 = base64; })(this); diff --git a/op_crates/web/12_location.js b/op_crates/web/12_location.js index 6c99bc23a..2b6580f8b 100644 --- a/op_crates/web/12_location.js +++ b/op_crates/web/12_location.js @@ -348,7 +348,6 @@ workerLocation = new WorkerLocation(href, locationConstructorKey); } - window.__bootstrap = (window.__bootstrap || {}); window.__bootstrap.location = { locationConstructorDescriptor: { value: Location, |