mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
6be389ce29
Note: tests are not the only part of the codebase that uses `std`. Other parts, like `tools/`, do too. So, it could be argued that this is a little misleading. Either way, I'm doing this as discussed with @mmastrac.
13 lines
486 B
TypeScript
13 lines
486 B
TypeScript
// deno-lint-ignore-file no-window-prefix
|
|
import { assert } from "../../../../tests/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");
|