Add test folder for non-unittests (only HTML at the moment).
This commit is contained in:
parent
cb1df68153
commit
1a17b3fb23
12
test/html/jsprompt.html
Normal file
12
test/html/jsprompt.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user