summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/constrained_files/openclose_one.html
blob: 1bb8a80620c619a55b3b0ba32fa1eef7329164a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
  <head>
    <title>One</title>
    <script>
      function createDifferentWindow() {
        window.open('openclose_two.html', 'window2', 'status=0,toolbar=0');
        window.close();
      }
    </script>
  </head>

<body onLoad="createDifferentWindow();">
</body>
</html>