summaryrefslogtreecommitdiffstats
path: root/editor/composer/crashtests/428844-1.html
blob: 793aababd4b61a2db546893be9b1615119c196cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html class="reftest-wait">
<head>
<script>
function boom() {
  var iframe = document.getElementById('inner');
  iframe.addEventListener("load", function() {
    document.documentElement.removeAttribute("class");
  });
  iframe.src = "data:text/html,";
  dump("Outer onload\n");
}
</script>
</head>
<body onload="boom()">
<iframe src="428844-1-inner.xhtml" id="inner"></iframe>
</body>
</html>