blob: 19bf39d07ef9016115dfe4e4d9d52cb3d049d100 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
var newWindow = window.open("about:blank");
newWindow.alert("Testing alert");
newWindow.confirm("Testing confirm");
newWindow.prompt("Testing prompt", "Default text");
newWindow.onbeforeunload = () => "Default text";
</script>
</head>
</html>