tor-browser

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

inline-with-columns-000-crash.html (464B)


      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=1276898">
      4 <style>
      5  @container (max-width: 500px) {
      6    #target {
      7      columns: 2;
      8    }
      9  }
     10 </style>
     11 <div id="container" style="container-type:inline-size; width:600px;">
     12  <span id="target"></span>
     13 </div>
     14 <script>
     15  document.body.offsetTop;
     16  container.style.width = "400px";
     17 </script>