tor-browser

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

subgrid-reflow-root.html (252B)


      1 <!DOCTYPE html>
      2 <style>
      3 * {
      4  grid-template-rows: subgrid;
      5  display: inline-grid;
      6 }
      7 
      8 html {
      9  contain: strict;
     10 }
     11 </style>
     12 <script>
     13  window.addEventListener('load', () => {
     14    document.head.appendChild(document.createElement('style'))
     15  })
     16 </script>