tor-browser

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

mathvariant-font-style-font-weight-ref.html (974B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5    <title>mathvariant attribute and font-style/font-weight (reference)</title>
      6    <style>
      7      .italic { font-style: italic; }
      8      .bold { font-weight: bold; }
      9    </style>
     10  </head>
     11  <body>
     12    <p>This test passes if you see six lines of text (italic, italic, bold, bold, bold italic and bold italic) with the corresponding style applied:</p>
     13    <p>
     14      <math>
     15        <mtext class="italic">italic</mtext>
     16      </math>
     17    </p>
     18    <p>
     19      <math>
     20        <mtext class="italic">italic</mtext>
     21      </math>
     22    </p>
     23    <p>
     24      <math>
     25        <mtext class="bold">bold</mtext>
     26      </math>
     27    </p>
     28    <p>
     29      <math>
     30        <mtext class="bold">bold</mtext>
     31      </math>
     32    </p>
     33    <p>
     34      <math>
     35        <mtext class="bold italic">bold italic</mtext>
     36      </math>
     37    </p>
     38    <p>
     39      <math>
     40        <mtext class="bold italic">bold italic</mtext>
     41      </math>
     42    </p>
     43  </body>
     44 </html>