Files
UXP-Fixed/editor/reftests/selection_visibility_after_reframe-2.html
2018-02-02 04:16:08 -05:00

12 lines
202 B
HTML

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