tor-browser

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

font-smoothing-antialiased-notref.html (403B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <style>
      4 @font-face {
      5  font-family: test;
      6  src: url(../fonts/dejavu-sans/DejaVuSans.ttf);
      7 }
      8 div {
      9  font: 24px test;
     10  margin: 6px;
     11 }
     12 .dark {
     13  background: black;
     14  color: white;
     15 }
     16 </style>
     17 
     18 <p>The first line should use lighter (grayscale-only) antialiasing:</p>
     19 <div>abcdef <span class="dark">abcdef</span></div>
     20 <div>abcdef <span class="dark">abcdef</span></div>