0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/run/replace_self.js

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)");
};