Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / style-outside-head.html
blob849ac25d9bd328384e0d642ddc85df76e71552f0
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("style");
12 var t = document.createTextNode("div { background-color: green }");
13 s.appendChild(t);
14 document.body.appendChild(s);
15 </script>
16 </body>
17 </html>