зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
392 B
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>
|
|
|