tor-browser

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

no-zoom-ref.html (489B)


      1 <!DOCTYPE html>
      2 <html reftest-async-zoom="1">
      3 <meta name="viewport" content="initial-scale=1,width=device-width,minimum-scale=1">
      4 <style>
      5 html, body {
      6  margin: 0;
      7  width: 100%;
      8  height: 100%;
      9 }
     10 #container {
     11  min-width: 1600px; /* this value should be greater than viewport width */
     12  position: relative;
     13 }
     14 #inner {
     15  position: absolute;
     16  top: 0;
     17  right: 0;
     18  width: 100px;
     19  height: 100px;
     20  background: green;
     21 }
     22 </style>
     23 <div id="container">
     24  <div id="inner"></div>
     25 </div>
     26 </html>