tor-browser

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

font-size-adjust-order-001-ref.html (418B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Fonts reference</title>
      4 <style>
      5  div {
      6    margin: 10px;
      7    font: 20px monospace;
      8    background: yellow;
      9    width: 10ch;
     10    font-size-adjust: 1.0;
     11  }
     12 </style>
     13 <body>
     14  <p>Test passes if both blocks render the same, and there is no red:</p>
     15  <div>The quick brown fox jumps over the lazy dog</div>
     16  <div>The quick brown fox jumps over the lazy dog</div>
     17 </body>