tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / link-outside-head.html
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>