1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-15 16:43:44 -05:00
denoland-deno/cli/tests/034_onload/main.ts
2020-12-07 21:22:58 +01:00

26 lines
671 B
TypeScript

import { assert } from "../../../std/testing/asserts.ts";
import "./imported.ts";
assert(window.hasOwnProperty("onload"));
assert(window.onload === null);
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");