tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

1482403-1.html (1006B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 
      4 <head>
      5    <meta http-equiv="content-type" content="text/html; charset=utf-8">
      6    <title>Bug 1482403</title>
      7    <style type="text/css">
      8    #col2 {
      9        display: inline-block;
     10        height: 35px;
     11        background: orange;
     12        filter: sepia(0.2);
     13    }
     14 
     15    #subnav {
     16        display: none;
     17        position: absolute;
     18        top: 25px;
     19        left: 0;
     20    }
     21    </style>
     22    <script type="text/javascript">
     23    function doTest() {
     24      var col2 = document.getElementById('col2');
     25      var subnav = document.getElementById('subnav');
     26      subnav.style.display = 'block';
     27      document.documentElement.className = "";
     28    }
     29 
     30    window.addEventListener("MozReftestInvalidate", doTest);
     31    </script>
     32 </head>
     33 
     34 <body>
     35    <div>Column 1</div>
     36    <div id="col2">Column 2
     37        <div id="subnav" style="">
     38            <ul>
     39                <li>Item 1</li>
     40                <li>Item 2</li>
     41            </ul>
     42        </div>
     43    </div>
     44 </body>
     45 </html>