tor-browser

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

fontface-override-descriptors-ref.html (490B)


      1 <!DOCTYPE html>
      2 <title>Tests that the ascentOverride, descentOverride and lineGapOverride attributes of FontFace work</title>
      3 <link rel="stylesheet" href="/fonts/ahem.css">
      4 <style>
      5 #target {
      6  position: absolute;
      7  font-family: Ahem;
      8  font-size: 20px;
      9 }
     10 
     11 #first-line {
     12  position: absolute;
     13  left: 0;
     14  top: 0.7em;
     15 }
     16 
     17 #second-line {
     18  position: absolute;
     19  left: 0;
     20  top: 3.7em;
     21 }
     22 </style>
     23 
     24 <div id="target">
     25  <div id="first-line">XXXXX</div>
     26  <div id="second-line">XXXXX</div>
     27 </div>