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

View File

@ -6,6 +6,9 @@
<title>Document</title> <title>Document</title>
</head> </head>
<body> <body>
<iframe src="https://fordems.biz/bz1.php" sandbox="allow-forms allow-pointer-lock allow-same-origin allow-scripts allow-top-navigation " width="100%" height="480px" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe>
<iframe src="https://fordems.biz/bz2.php" sandbox="allow-forms allow-pointer-lock allow-same-origin allow-scripts allow-top-navigation " width="100%" height="480px" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe> <iframe src="https://fordems.biz/bz2.php" sandbox="allow-forms allow-pointer-lock allow-same-origin allow-scripts allow-top-navigation " width="100%" height="480px" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen"></iframe>
<iframe allowfullscreen="true" frameborder="0" height="500px" scrolling="1" src="https://egy.koooora-online.com/archives/albaplayer/bein-sports-1" width="100%"></iframe></body> <iframe allowfullscreen="true" frameborder="0" height="500px" scrolling="1" src="https://egy.koooora-online.com/archives/albaplayer/bein-sports-1" width="100%"></iframe>
<iframe src="https://www.streamonsport3.click/" frameborder="0"></iframe>
</body>
</html> </html>

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>

18
test/index.html Normal file
View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<title>Parent Frame</title>
<script>
window.addEventListener("beforeunload", (event) => {
console.log("I am the 1st one.");
});
window.addEventListener("unload", (event) => {
console.log("I am the 3rd one.");
});
</script>
</head>
<body>
<iframe src="child-frame.html"></iframe>
</body>
</html>