Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / 002.html
blob1674b0255301c252927c2f2185639bbe314dc6cf
1 <html>
2 <body>
3 <div>
4 <div id="float1" style="border: 2px solid red; height:100px">I should become a right-floating element.</div>
5 This text should be on the left. The float should be to the right.
6 </div>
7 </div>
9 <div style="height:30px"></div>
11 <div>
12 <span id="float2" style="border:2px solid red; height:100px">I should become a left-floating element.</span>
13 This text should be on the right. The float should be to the left.
14 </div>
16 <script>
17 document.getElementById("float1").style.cssFloat = 'right';
18 document.getElementById("float2").style.cssFloat = 'left';
19 </script>