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

10 строки
221 B
HTML

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