blob: 19a14e9d98632ba45b8a9dd29d7ba53cea3a1e1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html>
<head>
<script>
function closeWindow()
{
if (window.testRunner) {
testRunner.notifyDone();
}
opener.log("Modal dialog closing.");
if (window.testRunner) {
testRunner.abortModal();
}
close();
}
</script>
</head>
<body onload="closeWindow()">
This is a modal dialog.
</body>
</html>
|