blob: a86f6e6186533445358a34b508c675fca1b5a56b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|