format-block-selection-containing-non-editable-list.html (350B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script> 5 window.addEventListener('load', () => { 6 document.execCommand('selectAll', false, null) 7 document.execCommand('formatBlock', false, 'h1') 8 }) 9 </script> 10 </head> 11 <body> 12 <main contenteditable='true'> 13 <li></li> 14 <ol contenteditable='false'> 15 </ol> 16 </main> 17 </body> 18 </html>