tor-browser

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

size.html (218B)


      1 <!doctype html>
      2 <link rel=match href=size-ref.html>
      3 <p>innerWidth x innerHeight: <span id=size></span></p>
      4 <script>
      5 document.querySelector("#size").textContent = window.innerWidth + "x" + window.innerHeight;
      6 </script>