Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / css / link-outside-head.html
blob7bc0bce5a718fb22fa8b696dfc980b9a8d0a4403
1 <html>
2 <head>
3 <style>
4 div { background-color: red; width: 100px; height: 100px }
5 </style>
6 </head>
7 <body>
8 You should see a 100x100 green square below. If you see any red then the test has failed.
9 <div></div>
10 <script>
11 var s = document.createElement("link");
12 s.setAttribute("rel", "stylesheet");
13 s.setAttribute("href", "resources/green.css");
14 document.body.appendChild(s);
15 </script>
16 </body>
17 </html>