1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/testdata/run/before_unload.js

22 lines
324 B
JavaScript
Raw Normal View History

let count = 0;
console.log("0");
globalThis.addEventListener("beforeunload", (e) => {
console.log("GOT EVENT");
if (count === 0 || count === 1) {
e.preventDefault();
setTimeout(() => {
console.log("3");
}, 100);
}
count++;
});
console.log("1");
setTimeout(() => {
console.log("2");
}, 100);