tenfourfox/editor/reftests/selection_visibility_after_reframe-2.html

12 lines
202 B
HTML
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<body>
<input value="foo">
<script>
var i = document.querySelector("input");
i.selectionStart = 1;
i.selectionEnd = 2;
</script>
</body>
</html>