gecko-dev/editor/reftests/selection_visibility_after_...

13 строки
219 B
HTML

<!DOCTYPE html>
<html>
<body>
<input value="foo">
<script>
var i = document.querySelector("input");
i.focus();
i.selectionStart = 1;
i.selectionEnd = 2;
</script>
</body>
</html>