Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / vertical-lr / unsplittable-inline-block-expected.html
blob13efa4c3af40ed253a65d71b1a57211efc43af5d
1 <!DOCTYPE html>
2 <style>
3 body {
4 -webkit-writing-mode: vertical-lr;
6 .columns {
7 width: 300px;
8 border: 5px solid black;
9 padding: 5px;
10 line-height: 20px;
12 .column1, .column2 {
13 float: left;
14 height: 50%;
16 .column1 {
17 width: 100%;
19 .inline_block {
20 display: inline-block;
21 border: 2px solid green;
23 </style>
24 <div class="columns">
25 <div class="column1"></div>
26 <div class="column2">
27 <div class="inline_block">
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 This should be in the second column.<br>
35 This should be in the second column.<br>
36 This should be in the second column.<br>
37 This should be in the second column.<br>
38 This should be in the second column.<br>
39 </div>
40 </div>
41 </div>