summaryrefslogtreecommitdiffstats
path: root/docshell/base/crashtests/1331295.html
blob: cdcb29e7fe8e20c4789ba412feb1fdaefdf9e43f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom() {
  setTimeout(function(){
    var o=document.getElementById('b');
    document.getElementById('a').appendChild(o.parentNode.removeChild(o));
  },0);
  var o=document.getElementById('c');
  var p=document.getElementById('b');
  p.id=[o.id, o.id=p.id][0];
  o=document.getElementById('b');
  o.setAttribute('sandbox', 'disc');
  window.location.reload(true);
}
</script>
</head>
<body onload="boom();">
<header id='a'></header>
<output id='b'></output>
<iframe id='c' sandbox='allow-same-origin' src='http://a'></iframe>
</body>
</html>