summaryrefslogtreecommitdiffstats
path: root/docshell/base/crashtests/1667491_1.html
blob: 3df3353f72cd97fe2f8705c9a1d379f23f38baac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <script>
  function go() {
    document.body.appendChild(a)
    window.frames[0].onbeforeunload = document.createElement("body").onload;
    window.requestIdleCallback(() => {
      window.close();
      finish();
    });
  }
  </script>
</head>
<body onload="go()">
<iframe id="a"></iframe>
<iframe></iframe>
</body>
</html>