browser/base/content/test/general/test_bug462673.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:298f0f9d7ade
1 <html>
2 <head>
3 <script>
4 var w;
5 function openIt() {
6 w = window.open("", "window2");
7 }
8 function closeIt() {
9 if (w) {
10 w.close();
11 w = null;
12 }
13 }
14 </script>
15 </head>
16 <body onload="openIt();" onunload="closeIt();">
17 </body>
18 </html>

mercurial