mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
12 lines
202 B
HTML
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>
|