summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1482403-1-ref.html
blob: f083bcdaa989aad1c978a944713438669c8723e2 (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
<!DOCTYPE html>
<html>

<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <title>Bug 1482403</title>
    <style type="text/css">
    #col2 {
        display: inline-block;
        height: 35px;
        background: orange;
        filter: sepia(0.2);
    }

    #subnav {
        display: block;
        position: absolute;
        top: 25px;
        left: 0;
    }
    </style>
</head>

<body>
    <div>Column 1</div>
    <div id="col2">Column 2
        <div id="subnav" style="">
            <ul>
                <li>Item 1</li>
                <li>Item 2</li>
            </ul>
        </div>
    </div>
</body>
</html>