summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/034_onload/imported.ts
blob: a176d42009c8b318b50e37f5d003a9f222b57729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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");