delete-at-next-to-svg-display-table-cell.html (382B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 addEventListener("load", async () => { 7 document.documentElement.setAttribute("contenteditable", "true"); 8 getSelection().collapse(document.body.lastChild, document.body.lastChild.length); 9 document.execCommand("delete"); 10 }); 11 </script> 12 </head> 13 <body><svg> 14 <svg display="table-cell"> 15 </svg> 16 </svg> 17 </body> 18 </html>