mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
19 lines
487 B
HTML
19 lines
487 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body onload="onLoad()">
|
|
<textarea></textarea>
|
|
<div id="start"></div>
|
|
<div id="end"></div>
|
|
<script>
|
|
function onLoad() {
|
|
var t = document.querySelector("textarea");
|
|
t.value = "aaa\nbbb";
|
|
t.value = "aaa\nbbb\n";
|
|
t.value += "X";
|
|
document.getElementById("start").textContent = t.selectionStart;
|
|
document.getElementById("end").textContent = t.selectionEnd;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|