qutebrowser/tests/html/jsalert_multiline.html
2015-08-27 22:13:40 +02:00

12 lines
241 B
HTML

<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>