tor-browser

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

position-absolute-crash-chrome-003.html (688B)


      1 <!DOCTYPE html>
      2 <title>CSS Position Absolute: Chrome crash</title>
      3 <link rel="author" href="mailto:atotic@chromium.org">
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=935805">
      7 <meta name="assert" content="Nested abs/fixed/flex do not crash">
      8 <style>
      9  #flex {
     10    display: flex;
     11  }
     12  .abs {
     13    position: absolute;
     14  }
     15  #fixed {
     16    position: fixed;
     17  }
     18 </style>
     19 <div class="abs">
     20  <div id="flex">
     21    <div class="abs">
     22      <div id="fixed"></div>
     23    </div>
     24  </div>
     25 </div>
     26 <script>
     27 test(() => {
     28 }, 'test passes if it does not crash');
     29 </script>