Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-textarea-element/textarea-selection-range-intersects-character-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>A selection range that intersects a character should not cause a crash</title>
<textarea id="textarea">A</textarea>
<script>
textarea.setSelectionRange(1, 1);
textarea.defaultValue = String.fromCodePoint(301146);
textarea.selectionStart;
</script>