1547898.html (406B)
1 <html> 2 <head> 3 <script> 4 function jsfuzzer () { 5 window.find('1') 6 const selection = window.getSelection() 7 selection.extend(document.getElementById('list_item')) 8 document.getElementById('list_item').contentEditable = 'true' 9 document.execCommand('indent', false) 10 } 11 </script> 12 </head> 13 <body onload=jsfuzzer()> 14 <li id="list_item">16</li> 15 </body> 16 </html>