blob: a166c94de211a4ea83f622b85ba593b42e9c8e38 (
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" src="data:application/xhtml+xml,<html xmlns='http://www.w3.org/1999/xhtml'></html>"></iframe></body>
</html>
|