upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / fast / css / style-parsed-outside-head.html
1 <html>
2 <head>
3 <style>
4 div { background-color: red; width: 100px; height: 100px }
5 </style>
6 </head>
7 <script>
8 var s = document.createElement("style");
9 var t = document.createTextNode("div { background-color: green }");
10 s.appendChild(t);
11 document.documentElement.appendChild(s);
12 </script>
13 <style>
14 div { background-color: orange }
15 </style>
16 You should see a 100x100 green square below.  If you see any red or orange then the test has failed.
17 <div></div>
18 </html>