mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-17 08:30:05 +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>
|