Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / floating-to-positioned.html
blob0066d9cb86a4662add207055d2689cf54c6ad185
1 <body onload="test()">
2 <div style="font-family: Ahem; font-size: 50px; color: red;">
3 <span id="float" style="float: left; color: green;">Y</span>Z
4 </div>
5 <script>
6 function test()
8 document.body.offsetTop;
9 document.getElementById("float").style.position = "absolute";
11 </script>
12 </body>