summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/multicol/overflow-into-columngap-expected.html
blob: df531657712cda80871e1bb5778b5fdf66bbebac (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
39
40
<!DOCTYPE html>
<html>
    <head>
        <title>MultiColumn: Reference test for overflow into column gaps in column boxes</title>
        <link rel="help" href="http://www.w3.org/TR/css3-multicol/#overflow-inside-multicol-elements"/>
        <style>
            #parent
            {
                font: 20px/1 monospace;
                position: relative;
            }
            #reference
            {
                height: 6em;
                width: 11em;
                position: absolute;
            }
            #reference div
            {
                position: absolute;
                top: 0;
                background: green;
                height: 6em;
            }
            #right
            {
                right: 0;
            }
        </style>
    </head>
    <body>
        <p>Test passes if there is no red visible on the page.</p>
        <div id="parent">
            <div id="reference">
                <div style="width:5.5em;"></div>
                <div id="right" style="width:5em;"></div>
            </div>
        </div>
    </body>
</html>