Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / multiple-float-positioning.html
blob6cadae87ef3e0ca627e23607831507f100dc2ed6
1 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fi" lang="fi">
2 <head>
3 <style>
4 div { border: 3px solid red }
5 div.etusivuText { width: 140px; border: 3px solid green }
6 div div { float: left; width: 70px; }
7 </style>
9 </head>
10 <body>
11 <div class="etusivuText">Test float positioning. There should be four red boxes with numbers 1,2,3,4 below this text. The boxes should not overlap this text.
12 <div>1</div>
13 <div>2</div>
14 <div>3</div>
15 <div>4</div>
16 </div>