delete-around-orphan-rb.html (425B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 "use strict"; 7 8 document.addEventListener("DOMContentLoaded", async () => { 9 document.documentElement.contentEditable = "plaintext-only"; 10 getSelection().collapse(document.body.lastChild, 0); 11 document.execCommand("delete"); 12 }, {once: true}); 13 14 // FYI: The white-space only text node in <rb> is important. 15 </script> 16 </head> 17 <body> 18 <rb> 19 </rb> 20 </body> 21 </html>