summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/writing-mode/logical-height-after-clear-expected.html
blob: 36518494015505cc0c25b9c05b57322757d9ae47 (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
<style>
    div.test {
        -webkit-logical-width: 50px;
        -webkit-logical-height: 100px;
        background-color: green;
    }

    div.green {
        background-color: blue;
        -webkit-logical-height: 50px;
    }

    div.lr {
        -webkit-writing-mode: vertical-lr;
    }

    div.rl {
        -webkit-writing-mode: vertical-rl;
    }
</style>
<div class="test lr">
    <div class="green"></div>
</div>

<div class="test lr">
    <div class="green"></div>
</div>

<div class="test rl">
    <div class="green"></div>
</div>

<div class="test rl">
    <div class="green"></div>
</div>