Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / unsplittable-inline-block.html
blobb8829b7fc598007faa5d1d5c1b067d4a2134f746
1 <!DOCTYPE html>
2 <style>
3 .columns {
4 height: 300px;
5 -webkit-column-count: 2;
6 -webkit-column-gap: 0;
7 column-fill: auto;
8 border: 5px solid black;
9 padding: 5px;
10 line-height: 20px;
12 .inline_block {
13 display: inline-block;
14 border: 2px solid green;
16 </style>
17 <div class="columns">
18 <div style="height: 250px;"></div>
19 <div class="inline_block">
20 This should be in the second column.<br>
21 This should be in the second column.<br>
22 This should be in the second column.<br>
23 This should be in the second column.<br>
24 This should be in the second column.<br>
25 This should be in the second column.<br>
26 This should be in the second column.<br>
27 This should be in the second column.<br>
28 This should be in the second column.<br>
29 This should be in the second column.<br>
30 This should be in the second column.<br>
31 </div>
32 </div>