tor-browser

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

separators-ref.html (562B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Line and paragraph separator rendering</title>
      4 <style>
      5    @font-face {
      6      font-family: test;
      7      src: url(resources/separator-test-font.ttf)  format("truetype");
      8    }
      9    p {
     10        font-size: 30px;
     11    }
     12 </style>
     13 <body>
     14    <p>&#x0056&#x0020&#x004f</p>
     15    <p>&#x0056&#x2028&#x004f</p>
     16    <p>&#x0056&#x2029&#x004f</p>
     17 
     18    <p style="font-family: test;">&#x0056&#x0020&#x004f</p>
     19    <p style="font-family: test;">&#x0056&#x0020&#x004f</p>
     20    <p style="font-family: test;">&#x0056&#x0020&#x004f</p>
     21 </body>