1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/run/replace_self/replace_self.js
2024-11-05 06:39:05 +00:00

21 lines
528 B
JavaScript

// Test that setting `self` in the main thread to some other value doesn't break
// the world, in particular for events fired on the global scope.
// deno-lint-ignore no-global-assign
self = null;
addEventListener("load", () => {
console.log("load event (event listener)");
});
addEventListener("unload", () => {
console.log("unload event (event listener)");
});
globalThis.onload = () => {
console.log("load event (event handler)");
};
globalThis.onunload = () => {
console.log("unload event (event handler)");
};