tenfourfox/editor/reftests/caret_on_textarea_lastline-ref.html

14 lines
253 B
HTML
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body onload="loaded()">
<script>
function loaded() {
var t = document.querySelector('textarea');
t.selectionStart = t.selectionEnd = t.value.length;
t.focus();
}
</script>
<textarea>foo</textarea>
</body>
</html>