Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / harness / resources / modal-dialog.html
blob19a14e9d98632ba45b8a9dd29d7ba53cea3a1e1a
1 <html>
2 <head>
3 <script>
4 function closeWindow()
6 if (window.testRunner) {
7 testRunner.notifyDone();
9 opener.log("Modal dialog closing.");
10 if (window.testRunner) {
11 testRunner.abortModal();
13 close();
15 </script>
16 </head>
18 <body onload="closeWindow()">
19 This is a modal dialog.
20 </body>
21 </html>