summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/onload/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/onload/main.ts')
-rw-r--r--cli/tests/testdata/run/onload/main.ts34
1 files changed, 0 insertions, 34 deletions
diff --git a/cli/tests/testdata/run/onload/main.ts b/cli/tests/testdata/run/onload/main.ts
deleted file mode 100644
index 191c4d872..000000000
--- a/cli/tests/testdata/run/onload/main.ts
+++ /dev/null
@@ -1,34 +0,0 @@
-// deno-lint-ignore-file no-window-prefix no-prototype-builtins
-import { assert } from "../../../../../test_util/std/assert/mod.ts";
-import "./imported.ts";
-
-assert(window.hasOwnProperty("onload"));
-assert(window.onload === null);
-
-const eventHandler = (e: Event) => {
- assert(e.type === "beforeunload" ? e.cancelable : !e.cancelable);
- console.log(`got ${e.type} event in event handler (main)`);
-};
-
-window.addEventListener("load", eventHandler);
-
-window.addEventListener("beforeunload", eventHandler);
-
-window.addEventListener("unload", eventHandler);
-
-window.onload = (e: Event) => {
- assert(!e.cancelable);
- console.log(`got ${e.type} event in onload function`);
-};
-
-window.onbeforeunload = (e: BeforeUnloadEvent) => {
- assert(e.cancelable);
- console.log(`got ${e.type} event in onbeforeunload function`);
-};
-
-window.onunload = (e: Event) => {
- assert(!e.cancelable);
- console.log(`got ${e.type} event in onunload function`);
-};
-
-console.log("log from main");