mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
345f0fbe5c
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
// deno-lint-ignore-file no-window-prefix
|
|
import { assert } from "../../../../test_util/std/testing/asserts.ts";
|
|
import "./nest_imported.ts";
|
|
|
|
const handler = (e: Event) => {
|
|
assert(!e.cancelable);
|
|
console.log(`got ${e.type} event in event handler (imported)`);
|
|
};
|
|
|
|
window.addEventListener("load", handler);
|
|
window.addEventListener("unload", handler);
|
|
console.log("log from imported script");
|