WebCore/manual-tests/resources/window-close-during-parsing-popup1.html
changeset 0 4f2f89ce4247
equal deleted inserted replaced
-1:000000000000 0:4f2f89ce4247
       
     1 <html>
       
     2 <body onload="alert('FAIL: onload fired')" onunload="alert('FAIL: onunload fired')">
       
     3 <script>
       
     4 window.close();
       
     5 alert('PASS: same script tag after close');
       
     6 </script>
       
     7 <script>
       
     8 alert('FAIL: different script tag after close');
       
     9 </script>
       
    10 </body>
       
    11 </html>