mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
663 B
HTML
30 lines
663 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body onload="setup()">
|
||
|
<textarea id="ta" dir="rtl">
|
||
|
|
||
|
אaב
|
||
|
|
||
|
</textarea>
|
||
|
<textarea id="tb">
|
||
|
|
||
|
abc
|
||
|
|
||
|
</textarea>
|
||
|
|
||
|
<div id="coords1"></div>
|
||
|
<div id="coords2"></div>
|
||
|
|
||
|
<script>
|
||
|
function setup() {
|
||
|
document.getElementById("ta").selectionStart = 3;
|
||
|
document.getElementById("ta").selectionEnd = 3;
|
||
|
document.getElementById("coords1").innerHTML = document.getElementById("ta").selectionStart;
|
||
|
document.getElementById("tb").selectionStart = 3;
|
||
|
document.getElementById("tb").selectionEnd = 3;
|
||
|
document.getElementById("coords2").innerHTML = document.getElementById("tb").selectionStart;
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|