1227498.html (499B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 addScopedSheet("#x { }"); 10 } 11 12 function addScopedSheet(text) 13 { 14 var sheet = document.createElementNS("http://www.w3.org/1999/xhtml", "style"); 15 sheet.appendChild(document.createTextNode(text)); 16 sheet.scoped = true; 17 document.documentElement.appendChild(sheet); 18 } 19 20 </script> 21 </head> 22 23 <body onload="boom();"> 24 <embed type="application/x-missing-plugin"></embed> 25 </body> 26 </html>