Backed out 2 changesets (bug 1733498) for causing perma Localised repacks build busta...
[gecko.git] / editor / reftests / caret-rtl-text-in-ltr-input.html
blobb296f1f22c37e49c1b7e4fea22f6f4bcc161f958
1 <!doctype html>
2 <meta charset="utf-8">
3 <input type=text value="الخير" autofocus>
4 <script>
5 onload = () => {
6 let input = document.querySelector("input");
7 input.selectionStart = input.selectionEnd = input.value.length;
8 input.focus();
10 </script>