tor-browser

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

mi-fontstyle-fontweight-ref.html (696B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5    <title>single-char mi and fontstyle/fontweight attributes (reference)</title>
      6    <style>
      7      @font-face {
      8        font-family: TestFont;
      9        src: url("/fonts/math/mathvariant-italic.woff");
     10      }
     11      .testfont {
     12        font-family: TestFont;
     13        font-size: 32px;
     14       }
     15    </style>
     16  </head>
     17  <body>
     18    <p>Test passes if you see <span class="testfont">&#x1D715;</span> rendered twice, without any bold or italic style applied:</p>
     19    <p><math class="testfont"><mi mathvariant="normal">&#x1D715;</mi></math></p>
     20    <p><math class="testfont"><mi mathvariant="normal">&#x1D715;</mi></math></p>
     21  </body>
     22 </html>