436261-1.html (406B)
1 <!DOCTYPE html> 2 <html> 3 <body> 4 <script type="text/javascript"> 5 var el = document.createElement("link"); 6 el.type = "text/css"; 7 el.rel = "stylesheet"; 8 el.href = "outer-sheet.css"; 9 var h = document.getElementsByTagName("HEAD")[0]; 10 h.appendChild(el); 11 el.title = "theme"; // comment this line to make the test work! 12 </script> 13 <p>test</p> 14 </body> 15 </html>