gecko-dev/editor/libeditor/crashtests/650572-1.html

19 строки
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>