Add test to confirm Node.js is disabled in a new window

This commit is contained in:
Yuya Ochiai
2016-06-25 18:45:33 +09:00
parent b22c1eb2aa
commit 7fc963125a
2 changed files with 52 additions and 2 deletions

15
test/modules/test.html Normal file
View File

@@ -0,0 +1,15 @@
<html>
<body>
<h1>window.open() test</h1>
<p>
<input type="button" value="window.open()" onclick="open_window()">
</p>
<script>
function open_window() {
window.open('./test.html');
}
</script>
</body>
</html>