1223694-1.html (264B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 var sheet = document.createElement("style"); 10 sheet.scoped = true; 11 document.documentElement.appendChild(sheet); 12 } 13 14 </script> 15 </head> 16 <body onload="boom();"></body> 17 </html>