summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/unsplittable-inline-block-expected.html
blob: fd823cd31bf1b1a27adb3dfc12d2bbf30b7c78d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<style>
    .columns {
        height: 300px;
        border: 5px solid black;
        padding: 5px;
        line-height: 20px;
    }
    .column1, .column2 {
        float: left;
        width: 50%;
    }
    .column1 {
        height: 100%;
    }
    .inline_block {
        display: inline-block;
        border: 2px solid green;
    }
</style>
<div class="columns">
    <div class="column1"></div>
    <div class="column2">
        <div class="inline_block">
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
            This should be in the second column.<br>
        </div>
    </div>
</div>