summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/606432-1.html
blob: 4473778723263284479933b4e455af94674410c4 (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
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>

function boom()
{
  var t = document.getElementById("f").contentDocument.documentElement;
  t.contentEditable = "true";
  t.focus();
  document.body.appendChild(t);
  setTimeout(finish, 0);
}

function finish()
{
  document.documentElement.className = "";
}

</script>
</head>

<body onload="setTimeout(boom, 200);"><iframe id="f" srcdoc="<html xmlns='http://www.w3.org/1999/xhtml'></html>"></iframe></body>
</html>