summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2/modal-alerts-in-new-about-blank-window.html
blob: f76cb650b7ab8cb51da7995c1e91bdc40a4d8011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!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");

</script>
</head>
</html>