tor-browser

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

doc_page_state.html (287B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>Page State Test</title>
      5    <style>
      6      body {
      7        height: 100vh;
      8        background: red;
      9      }
     10      body.modified {
     11        background: green;
     12      }
     13    </style>
     14  </head>
     15  <body onclick="this.classList.add('modified')"/>
     16 </html>