gecko-dev/editor/reftests/caret-rtl-text-in-ltr-input...

11 строки
254 B
HTML

<!doctype html>
<meta charset="utf-8">
<input type=text value="الخير" autofocus>
<script>
onload = () => {
let input = document.querySelector("input");
input.selectionStart = input.selectionEnd = input.value.length;
input.focus();
}
</script>