summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1482403-1.html
blob: b973507026f6879a323cd6e2b79b9548d7b216f8 (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
41
42
43
44
45
<!DOCTYPE html>
<html class="reftest-wait">

<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: none;
        position: absolute;
        top: 25px;
        left: 0;
    }
    </style>
    <script type="text/javascript">
    function doTest() {
      var col2 = document.getElementById('col2');
      var subnav = document.getElementById('subnav');
      subnav.style.display = 'block';
      document.documentElement.className = "";
    }

    window.addEventListener("MozReftestInvalidate", doTest);
    </script>
</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>