tor-browser

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

fixed-width-body-viewport.html (807B)


      1 <!DOCTYPE HTML>
      2 <!--
      3 Our body is 2000px wide, but the effective container size for font inflation will be clamped to the
      4 viewport width of 1000px (this test uses a custom value for browser.viewport.desktopWidth).
      5 The minimum font size at 20em per line in an 1000px container is 50px. This means we map 0px-75px
      6 into 50px-75px, so 12px gets mapped to 54px.
      7 -->
      8 <html>
      9 <head>
     10  <style>
     11    body {
     12      width: 2000px;
     13      line-height: 1.1;
     14      font-size: 12px;
     15      overflow: hidden;
     16    }
     17  </style>
     18 </head>
     19  <body>
     20    PERSONS attempting to find a motive in this narrative will be prosecuted;
     21    persons attempting to find a moral in it will be banished;
     22    persons attempting to find a plot in it will be shot.<br>
     23    BY ORDER OF THE AUTHOR,<br>
     24    Per G.G., Chief of Ordnance.
     25  </body>
     26 </html>