0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/034_onload/main.ts
Ryan Dahl ddcad56ee9
Move deno_std to a more convenient location. (#3057)
js/deps/https/deno.land/std -> js/std
2019-10-04 14:49:32 -04:00

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");