tor-browser

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

position-absolute-crash-chrome-010.html (481B)


      1 <!DOCTYPE html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="/resources/testharnessreport.js"></script>
      4 <link rel="help" href="https://crbug.com/976397">
      5 <div style="width: 100px; position: relative;">
      6  <div style="float: left; width: 110px; height: 50px;">
      7    <div style="display: flex;">
      8      <div style="position: absolute; width: 50px; height: 50px;"></div>
      9   </div>
     10  </div>
     11 </div>
     12 <script>
     13 test(() => { }, 'test passes if it does not crash');
     14 </script>