blob: 8063036f38d72a7320f7e8f543f1b035f73f542a [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
</head>
<body>
<p id="description">Focus field with a placeholder, then type.</p>
<div>
<textarea id=i1>Text</textarea>
<script>
var i1 = document.getElementById('i1');
i1.focus();
i1.setSelectionRange(4, 4);
</script>
</body>
</html>