blob: e9d37339e448907f2d2c99476127ac75d986fe3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html class="reftest-wait">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body onload="start()">
<textarea onfocus="done()"
style="-moz-appearance: none;
unicode-bidi: bidi-override;">س</textarea>
<script>
var textarea = document.querySelector("textarea");
function start() {
textarea.focus();
textarea.selectionStart = 1; // place caret after the letter
textarea.selectionEnd = 1;
}
function done() {
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>
|