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