test_bug462673.html (235B)
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>