1<html>
2<body onload="alert('FAIL: onload fired')" onunload="alert('FAIL: onunload fired')">
3<script>
4window.close();
5alert('PASS: same script tag after close');
6</script>
7<script>
8alert('FAIL: different script tag after close');
9</script>
10</body>
11</html>
12