qutebrowser/tests/manual/js/jsalert_multiline.html
2016-06-06 08:38:35 +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>