textarea-splittext-with-range-simple-crash.html (322B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 document.addEventListener("DOMContentLoaded", () => { 7 const textarea = document.querySelector("textarea"); 8 getSelection().selectAllChildren(textarea); 9 textarea.firstChild.splitText(0); 10 }); 11 </script> 12 </head> 13 <body><textarea>abcd</textarea></body> 14 </html>