tor-browser

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

position-absolute-crash-chrome-012.html (527B)


      1 <!doctype html>
      2 <link rel="help" href="https://crbug.com/996085">
      3 <script src="/resources/testharness.js"></script>
      4 <script src="/resources/testharnessreport.js"></script>
      5 <script>test(()=>{})</script>
      6 <style>
      7  #container {
      8    width: 600px;
      9    position: relative;
     10  }
     11  #target {
     12    position: absolute;
     13    left: 0px;
     14    right: 33554000px;
     15    width: 10px;
     16    margin-left: 33554432px;
     17    margin-right: 33554432px;
     18    height: 20px;
     19  }
     20 </style>
     21 <body>
     22  <div id="container">
     23    <div id="target"></div>
     24  </div>
     25 </body>