qutebrowser/tests/html/jsalert_multiline.html

12 lines
241 B
HTML
Raw Normal View History

2015-08-27 22:13:40 +02:00
<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>