Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / multicol / vertical-rl / unsplittable-inline-block.html
1 <!DOCTYPE html>
2 <style>
3     body {
4         -webkit-writing-mode: vertical-rl;
5     }
6     .columns {
7         width: 300px;
8         -webkit-column-count: 2;
9         -webkit-column-gap: 0;
10         column-fill: auto;
11         border: 5px solid black;
12         padding: 5px;
13         line-height: 20px;
14     }
15     .inline_block {
16         display: inline-block;
17         border: 2px solid green;
18     }
19 </style>
20 <div class="columns">
21     <div style="width: 250px;"></div>
22     <div class="inline_block">
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         This should be in the second column.<br>
32         This should be in the second column.<br>
33         This should be in the second column.<br>
34     </div>
35 </div>