tor-browser

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

reflow-sanity-1-ref.html (435B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>test @font-face reflow sanity</title>
      5 <meta charset="utf-8">
      6 <style>
      7 body { margin: 20px }
      8 
      9 @font-face {
     10  font-family: reflow1ref;
     11  src: url(../fonts/markA.ttf);
     12 }
     13 
     14 div#test {
     15  font-family: reflow1ref;
     16  font-size: 400%;
     17  line-height: 1em;
     18 }
     19 
     20 div#test p {
     21  margin: 0;
     22  display: inline-block;
     23 }
     24 </style>
     25 </head>
     26 
     27 <body>
     28 <div id=test>
     29 <p>A</p>
     30 <p>A</p>
     31 <p>A</p>
     32 <p>A</p>
     33 </div>
     34 </body>
     35 </html>