tor-browser

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

fixed-flex-item-inside-abs-flex-in-multicol-crash.html (472B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1269228">
      4 <div id="elm" style="contain:layout; width:200px;">
      5  <div style="columns:2;">
      6    <div style="display:flex; padding:10%; position:absolute;">
      7      <div style="position:fixed;"></div>
      8    </div>
      9  </div>
     10 </div>
     11 <script>
     12  document.body.offsetTop;
     13  elm.style.width = "199px";
     14 </script>