summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/test_bug462673.html
blob: d864990e4f5851733dd3567abc7e67f0a6231e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<script>
var w;
function openIt() {
  w = window.open("", "window2");
}
function closeIt() {
  if (w) {
    w.close();
    w = null;
  }
}
</script>
</head>
<body onload="openIt();" onunload="closeIt();">
</body>
</html>