tor-browser

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

mathvariant-double-struck-font-style-font-weight-ref.html (890B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5    <title>mathvariant="double-struck" and font-style/font-weight (reference)</title>
      6    <style>
      7      @font-face {
      8        font-family: TestFont;
      9        src: url("/fonts/math/mathvariant-double-struck.woff");
     10      }
     11      .testfont {
     12        font-family: TestFont;
     13        font-size: 32px;
     14      }
     15      .italic { font-style: italic; }
     16      .bold { font-weight: bold; }
     17    </style>
     18  </head>
     19  <body>
     20    <p>Test passes if you see three lines with text <span class="testfont">&#x1EEA1;</span> respectively rendered with italic, bold and bold-italic style:</p>
     21    <p><math class="testfont"><mtext class="italic">&#x1EEA1;</mtext></math></p>
     22    <p><math class="testfont"><mtext class="bold">&#x1EEA1;</mtext></math></p>
     23    <p><math class="testfont"><mtext class="bold italic">&#x1EEA1;</mtext></math></p>
     24  </body>
     25 </html>