tenfourfox/editor/libeditor/crashtests/650572-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
392 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
document.documentElement.offsetHeight;
document.getElementById("d").focus();
document.getElementById("b").style.display = "inline";
document.getElementById("c").contentEditable = "false";
}
</script>
</head>
<body contenteditable="true" id="b" onload="setTimeout(boom, 200);"><div id="c"><input id="d"></div></body>
</html>