mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
ddcad56ee9
js/deps/https/deno.land/std -> js/std
23 lines
597 B
TypeScript
23 lines
597 B
TypeScript
import { assert } from "../../../std/testing/asserts.ts";
|
|
import "./imported.ts";
|
|
|
|
const eventHandler = (e: Event): void => {
|
|
assert(!e.cancelable);
|
|
console.log(`got ${e.type} event in event handler (main)`);
|
|
};
|
|
|
|
window.addEventListener("load", eventHandler);
|
|
|
|
window.addEventListener("unload", eventHandler);
|
|
|
|
window.onload = (e: Event): void => {
|
|
assert(!e.cancelable);
|
|
console.log(`got ${e.type} event in onload function`);
|
|
};
|
|
|
|
window.onunload = (e: Event): void => {
|
|
assert(!e.cancelable);
|
|
console.log(`got ${e.type} event in onunload function`);
|
|
};
|
|
|
|
console.log("log from main");
|