Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / inline-block / float-leading-whitespace.html
blob3b33e23a4e4e882aa8a52ee84a9923d70b75b914
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Test With Leading Whitespace</title>
5 <style>
6 div { height:30px; margin:0; padding:0; border:none; }
7 .container { width:400px; }
8 .floater { float:right; width:100px; background-color:green; }
9 .middle { display:inline-block; width:300px; background-color:green; }
10 </style>
11 </head>
12 <body>
13 <p> There should be a single green rectangle below. </p>
14 <!-- Single Leading Space -->
15 <div class="container"><div class="middle"></div> <div class="floater"></div></div>
17 <!-- Single Leading Newline -->
18 <div class="container"><div class="middle"></div>
19 <div class="floater"></div></div>
21 <!-- Mixture of Leading Whitespace -->
22 <div class="container"><div class="middle"></div>
23 <div class="floater"></div></div>
25 </body>
26 </html>