1553874.html (433B)
1 <html> 2 <head> 3 <script> 4 function start () { 5 const style = document.createElement('style') 6 document.head.appendChild(style) 7 8 const ul = document.createElement('ul') 9 ul.textContent = '\uFFFD\n' 10 document.documentElement.appendChild(ul) 11 12 style.sheet.insertRule('ul { line-break: anywhere }', (0)) 13 } 14 window.addEventListener('load', start) 15 </script> 16 </head> 17 </html>