trisquel-icecat/icecat/editor/reftests/caret-rtl-text-in-ltr-input-notref-2.html

9 lines
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>