summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/manual-tests/resources/window-close-during-parsing-popup1.html
blob: 249cea897f7b55bb975dde902b6da4574214f808 (plain)
1
2
3
4
5
6
7
8
9
10
11
<html>
<body onload="alert('FAIL: onload fired')" onunload="alert('FAIL: onunload fired')">
<script>
window.close();
alert('PASS: same script tag after close');
</script>
<script>
alert('FAIL: different script tag after close');
</script>
</body>
</html>