1348851.html (379B)
1 <!DOCTYPE> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 function boom(){ 7 document.designMode = "on"; 8 document.execCommand("insertlinebreak"); 9 document.designMode = "off"; 10 document.designMode = "on"; 11 document.execCommand("insertunorderedlist"); 12 } 13 addEventListener("DOMContentLoaded", boom); 14 </script> 15 </head> 16 <body style="display:flex;"> 17 <!--comment--> 18 </body> 19 </html>