tor-browser

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

webkit-box-fixed-position-child.html (504B)


      1 <!doctype html>
      2 <title>Verifies changing 'display' with a fixed position webkit-box that
      3  has a fixed position child</title>
      4 <body>
      5  <div id="outer" style="position:fixed;">
      6  <div style="display:-webkit-box; float:left; padding-left:100%;">
      7    <div style="position:fixed; width:100px; height:100px;"></div>
      8  </div>
      9  <div style="display:inline-block; width:100px; height:20px;"></div>
     10 </div>
     11 <div id="elm"></div>
     12 A
     13 </body>
     14 <script>
     15  document.body.offsetTop;
     16  elm.style.display = 'none';
     17 </script>