indent-in-inline-editing-host-outside-body.html (366B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script> 6 addEventListener("load", () => { 7 const samp = document.createElement("samp"); 8 samp.innerText = "ABC"; 9 samp.contentEditable = true; 10 document.documentElement.appendChild(samp); 11 getSelection().selectAllChildren(samp); 12 document.execCommand("indent"); 13 }); 14 </script> 15 </head> 16 <body> 17 </body> 18 </html>