tor-browser

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

disable-fontinfl-on-mobile.html (663B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
      3 
      4 <!--
      5 Without the patch for bug 706198, this website should not show up as inflated. That means
      6 that with a 450px container, the minimum font size with 15em per line should be 30px.
      7 So, we map 0px-45px into 30px-45px, and thus 12px gets mapped to 34px.
      8 
      9 With the patch, the text should be uninflated, which means that 12px should still be
     10 12px.
     11 -->
     12 <html>
     13  <head>
     14    <style>
     15      p { font-size: 12px; line-height: 1.0;}
     16    </style>
     17    <body>
     18      <p>Some uninflated text.</p>
     19    </body>
     20  </head>
     21 </html>