mirror of
https://github.com/denoland/deno.git
synced 2024-11-26 16:09:27 -05:00
d2b5254c33
Re-attempt at #21284. I was more thorough this time. --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
13 lines
488 B
TypeScript
13 lines
488 B
TypeScript
// deno-lint-ignore-file no-window-prefix
|
|
import { assert } from "../../../../../test_util/std/assert/mod.ts";
|
|
import "./nest_imported.ts";
|
|
|
|
const handler = (e: Event) => {
|
|
assert(e.type === "beforeunload" ? e.cancelable : !e.cancelable);
|
|
console.log(`got ${e.type} event in event handler (imported)`);
|
|
};
|
|
|
|
window.addEventListener("load", handler);
|
|
window.addEventListener("beforeunload", handler);
|
|
window.addEventListener("unload", handler);
|
|
console.log("log from imported script");
|