mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2025-12-29 11:45:20 -05:00
Window-open-crash test
This commit is contained in:
@@ -29,24 +29,25 @@
|
||||
<body>
|
||||
<h1>test</h1><p>
|
||||
<a class="NORM" href="..">..</a><br>
|
||||
[ 0 Oct 7 18:31] <a class="DIR" href="./cache/">cache</a><br>
|
||||
[ 0 Oct 7 18:32] <a class="DIR" href="./float/">float</a><br>
|
||||
[ 0 Oct 7 2022] <a class="DIR" href="./cache/">cache</a><br>
|
||||
[ 0 Feb 17 0:37] <a class="DIR" href="./float/">float</a><br>
|
||||
[ 0 Jul 9 2022] <a class="DIR" href="./focus/">focus</a><br>
|
||||
[ 0 Nov 9 17:43] <a class="DIR" href="./js/">js</a><br>
|
||||
[ 0 Jul 9 2022] <a class="DIR" href="./login/">login</a><br>
|
||||
[ 0 Dec 30 12:43] <a class="DIR" href="./media-fullscreen/">media-fullscreen</a><br>
|
||||
[ 0 Jul 9 2022] <a class="DIR" href="./pdf/">pdf</a><br>
|
||||
[ 0 Jul 9 2022] <a class="DIR" href="./referrer/">referrer</a><br>
|
||||
[ 0 Oct 7 18:29] <a class="DIR" href="./test-links/">test-links</a><br>
|
||||
[ 0 Oct 7 2022] <a class="DIR" href="./test-links/">test-links</a><br>
|
||||
[ 0 Jul 9 2022] <a class="DIR" href="./translate/">translate</a><br>
|
||||
[ 0 Oct 7 17:59] <a class="DIR" href="./video-mkv-aac/">video-mkv-aac</a><br>
|
||||
[ 0 Oct 7 2022] <a class="DIR" href="./video-mkv-aac/">video-mkv-aac</a><br>
|
||||
[ 0 Apr 26 9:49] <a class="DIR" href="./window-open-crash/">window-open-crash</a><br>
|
||||
[ 383 Feb 8 2022] <a class="EXEC" href="./db-test.php">db-test.php</a><br>
|
||||
[ 366 Oct 5 23:07] <a class="EXEC" href="./test-favicon.php">test-favicon.php</a><br>
|
||||
[ 366 Oct 5 2022] <a class="EXEC" href="./test-favicon.php">test-favicon.php</a><br>
|
||||
<br><br>
|
||||
</p>
|
||||
<p>
|
||||
|
||||
11 directories, 2 files
|
||||
12 directories, 2 files
|
||||
<br><br>
|
||||
</p>
|
||||
</html>
|
||||
|
||||
16
test/window-open-crash/index.html
Executable file
16
test/window-open-crash/index.html
Executable file
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<p>Click the button to open a popup.</p>
|
||||
|
||||
<button onclick="myFunction()">Try it</button>
|
||||
|
||||
<script>
|
||||
function myFunction() {
|
||||
window.open("popup.html", "_blank", "width=600, height=500");
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
17
test/window-open-crash/popup.html
Executable file
17
test/window-open-crash/popup.html
Executable file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<p>This is the popup window. It only calls <code>window.open()</code></p>
|
||||
<p>Click the button to open a popup.</p>
|
||||
|
||||
<button onclick="myFunction()">Try it</button>
|
||||
|
||||
<script>
|
||||
function myFunction() {
|
||||
window.open("popup.html");
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user