Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / newmulticol / break-before-expected.html
blob530e43caf92c37d50d38a26b16bdc458ec78654e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>auto-height multicol with break</title>
5 <style>
6 .mc { float:left; width:9em; padding:0 0.5em; }
7 .gap { float:left; width:1em; }
8 </style>
9 </head>
10 <body style="min-width:40em;">
11 <div style="float:left; background:olive;">
12 <div class="mc">
13 first column<br>
14 first column<br>
15 first column<br>
16 first column<br>
17 </div>
18 <div class="gap">&nbsp;</div>
19 <div class="mc">
20 second column<br>
21 second column<br>
22 second column<br>
23 </div>
24 <div class="gap">&nbsp;</div>
25 <div class="mc">
26 third column<br>
27 </div>
28 </div>
29 </body>
30 </html>