Add test folder for non-unittests (only HTML at the moment).

This commit is contained in:
Florian Bruhin 2014-11-27 07:08:08 +01:00
parent cb1df68153
commit 1a17b3fb23

12
test/html/jsprompt.html Normal file
View File

@ -0,0 +1,12 @@
<head>
<script type="text/javascript">
function prompter() {
var reply = prompt("js prompt", "")
alert("JS alert: " + reply + "!")
}
</script>
</head>
<body>
<input type="button" onclick="prompter()" value="Show prompt">
</body>