Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!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>