delete-in-block-in-progress.html (465B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 document.addEventListener("DOMContentLoaded", () => { 7 document.querySelector("mo").appendChild(document.querySelector("dialog")); 8 getSelection().collapse(document.querySelector("template"), 0); 9 document.execCommand("delete"); 10 }, {once:true}); 11 </script> 12 <body> 13 <dialog> 14 <template> 15 </template> 16 </dialog> 17 <dl contenteditable> 18 <li> 19 <b><progress> 20 <mo>a</mo> 21 </progress></b> 22 </li> 23 </dl> 24 </body> 25 </html>