367612-1e.html (455B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> * { color: red } </style> 5 <style id="t"></style> 6 </head> 7 <body> 8 <span class="test">This text should be green</span> 9 <script> 10 document.getElementById("t"). 11 appendChild(document.createTextNode("* { color: ")); 12 document.getElementById("t"). 13 appendChild(document.createTextNode("green }")); 14 document.getElementById("t").normalize(); 15 </script> 16 </body> 17 </html>