summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/resources/init.htm
blob: 6f936c4fb286a1fd50a138d32be420e19652c10f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
  <head>
    <title>support init file</title>
  </head>
  <body>
    <script>
      onload = function() {
        // Run async, because navigations from inside onload can be a bit weird.
        setTimeout(function() {
          if (parent != window) {
            parent.init()
          } else {
            opener.init();
          }
        }, 0);
      }
    </script>
  </body>
</html>