Add tests/html/jsalert_multiline.html.

This commit is contained in:
Florian Bruhin 2015-08-27 22:13:40 +02:00
parent 4cd0ad77a6
commit 0cd265296e

View File

@ -0,0 +1,11 @@
<head>
<script type="text/javascript">
function do_alert() {
alert("Hello\nWorld\nthis\nis\na\ntest");
}
</script>
</head>
<body>
<input type="button" onclick="do_alert()" value="Show alert">
</body>