2010-11-24 17:35:01 -08:00
|
|
|
<!DOCTYPE html>
|
2010-11-24 22:11:43 -08:00
|
|
|
<html class="reftest-wait">
|
2010-11-24 17:35:01 -08:00
|
|
|
<head>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
function boom()
|
|
|
|
{
|
|
|
|
var t = document.getElementById("f").contentDocument.documentElement;
|
|
|
|
t.contentEditable = "true";
|
|
|
|
t.focus();
|
|
|
|
document.body.appendChild(t);
|
2010-11-24 22:11:43 -08:00
|
|
|
setTimeout(finish, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
function finish()
|
|
|
|
{
|
|
|
|
document.documentElement.className = "";
|
2010-11-24 17:35:01 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
</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>
|