blob: d878635a1d9ad331c35880df594891a884d5a463 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE HTML><html>
<body>
<div contenteditable id="x" style="height: 50px; outline: none;"></div>
<script>
var div = document.getElementById('x');
div.focus();
</script>
</body>
</html>
|