tor-browser

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

chrome-bug-1288769-000-crash.html (375B)


      1 <!DOCTYPE html>
      2 <div id="container">
      3  <div id="child" style="columns:2;">
      4    <div style="display:flex;"></div>
      5    <div style="display:grid;"></div>
      6    <div style="display:table;"></div>
      7  </div>
      8 </div>
      9 <script>
     10  document.body.offsetTop;
     11  container.style.columns = "2";
     12  container.style.display = "inline-table";
     13  child.style.display = "table-footer-group";
     14 </script>