summaryrefslogtreecommitdiffstats
path: root/dom/audiochannel/crashtests/1339930.html
blob: f817c85975c783c242892e7973c20b550f17a7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
window.onload = function(){
  let x = document.getElementsByTagName("iframe")[0];
  let w = window.open();
  let o = window.frames[0];
  x.remove();
  o.requestIdleCallback(function(){});
  w.close();
};
</script>
</head>
<body>
<iframe></iframe>
</body>
</html>