summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/898939.html
blob: 7cb238498a20f879e8d9fd8c91fbb6bfeb730551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="UTF-8">
<script>

function boom()
{
  document.documentElement.appendChild(document.getElementById("f").contentDocument.getElementById("m"));
  document.documentElement.removeAttribute("class");
}

</script>
</head>
<body onload="boom();">
<iframe id="f" srcdoc="<!DOCTYPE html><body><marquee id=m>"></iframe>
</body>
</html>