delete-after-justifyleft-in-closed-editable-dialog.html (337B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 addEventListener("load", () => { 7 const dialog = document.querySelector("dialog"); 8 dialog.showModal(); 9 dialog.close(); 10 document.execCommand("justifyLeft"); 11 document.execCommand("delete"); 12 }); 13 </script> 14 </head> 15 <body><dialog contenteditable> 16 </dialog></body> 17 </html>