mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-18 23:12:02 +00:00
16 lines
533 B
HTML
16 lines
533 B
HTML
<!DOCTYPE html>
|
|
<textarea id="textarea"></textarea>
|
|
<script src="include.js"></script>
|
|
<script type="text/javascript">
|
|
test(() => {
|
|
let textarea = document.getElementById("textarea");
|
|
textarea.focus();
|
|
|
|
println(`selectionStart: ${textarea.selectionStart}`);
|
|
println(`selectionEnd: ${textarea.selectionEnd}`);
|
|
|
|
textarea.value = "Well hello friends";
|
|
println(`selectionStart: ${textarea.selectionStart}`);
|
|
println(`selectionEnd: ${textarea.selectionEnd}`);
|
|
});
|
|
</script>
|