broken linls

This commit is contained in:
√(noham)²
2023-03-25 22:34:33 +01:00
parent 80ec1475c8
commit ef637dad7e
3 changed files with 40 additions and 1 deletions

18
test/child-frame.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<title>Child Frame</title>
<script>
window.addEventListener("beforeunload", (event) => {
console.log("I am the 2nd one.");
});
window.addEventListener("unload", (event) => {
console.log("I am the 4th and last one…");
});
</script>
</head>
<body>
</body>
</html>