qutebrowser/tests/end2end/data/prompt/jsalert.html
Florian Bruhin 64d4c9f83e Clean up end2end test file structure
This renames tests/integration to tests/end2end and moves some files to
tests/end2end/fixtures.
2016-05-29 18:20:00 +02:00

16 lines
308 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript">
function do_alert() {
alert("js alert");
console.log("Alert done");
}
</script>
</head>
<body>
<input type="button" onclick="do_alert()" value="Show alert">
</body>
</html>