summaryrefslogtreecommitdiff
path: root/tests/manual/window-open.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/window-open.html')
-rw-r--r--tests/manual/window-open.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/manual/window-open.html b/tests/manual/window-open.html
deleted file mode 100644
index 6a8e81b..0000000
--- a/tests/manual/window-open.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-<head>
-<title>Window open</title>
-</head>
-<body>
- <p>
- Enable <code>set prevent-newwindow=on</code><br/>
- Following link should be opened into current window.<br/><br/>
- <a href="./dummy.html" target="_new">target="_new"</a><br/>
- <a href="./dummy.html" target="_blank">target="_blank"</a><br/>
- <a href="javascript:window.open('./dummy.html', 'winname')">javascript:window-open</a><br/>
- <a href="#" onclick="window.open('./dummy.html', 'winname')">onclick window-open</a><br/>
- </p>
- <p>
- This <a href="./dummy.html" target="foo">target iframe link</a> should
- load into the iframe.<br/>
- <iframe src="" name="foo"></iframe>
- </p>
-</body>
-</html>
-