tor-browser

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

separators.html (765B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="match" href="separators-ref.html">
      4 <link rel="help" href="https://www.unicode.org/faq/unsup_char.html#2"/>
      5 <link rel="assert" title="Line and paragraph separator should be displayed as space">
      6 <title>Line and paragraph separator rendering</title>
      7 <style>
      8    @font-face {
      9      font-family: test;
     10      src: url(resources/separator-test-font.ttf) format("truetype");
     11    }
     12    p {
     13        font-size: 30px;
     14    }
     15 </style>
     16 <body>
     17    <p>&#x0056&#x0020&#x004f</p>
     18    <p>&#x0056&#x2028&#x004f</p>
     19    <p>&#x0056&#x2029&#x004f</p>
     20 
     21    <p style="font-family: test;">&#x0056&#x0020&#x004f</p>
     22    <p style="font-family: test;">&#x0056&#x2028&#x004f</p>
     23    <p style="font-family: test;">&#x0056&#x2029&#x004f</p>
     24 </body>