summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/relations/css-styling/mathvariant-font-style-font-weight.html
blob: 793c687b097e1076b80d22b15be764c8f7db392d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>mathvariant attribute and font-style/font-weight</title>
    <link rel="help" href="https://w3c.github.io/mathml-core/#css-styling">
    <link rel="help" href="https://w3c.github.io/mathml-core/#the-mathvariant-attribute">
    <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1788645">
    <link rel="match" href="mathvariant-font-style-font-weight-ref.html"/>
    <meta name="assert" content="Verify that a mathvariant attribute does not cancel the effect of font-style/font-weight.">
    <style>
      .italic { font-style: italic; }
      .bold { font-weight: bold; }
    </style>
  </head>
  <body>
    <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>
    <p>
      <math mathvariant="normal">
        <mtext class="italic">italic</mtext>
      </math>
    </p>
    <p>
      <math>
        <mtext mathvariant="normal" class="italic">italic</mtext>
      </math>
    </p>
    <p>
      <math mathvariant="normal">
        <mtext class="bold">bold</mtext>
      </math>
    </p>
    <p>
      <math>
        <mtext mathvariant="normal" class="bold">bold</mtext>
      </math>
    </p>
    <p>
      <math mathvariant="normal">
        <mtext class="bold italic">bold italic</mtext>
      </math>
    </p>
    <p>
      <math>
        <mtext mathvariant="normal" class="bold italic">bold italic</mtext>
      </math>
    </p>
  </body>
</html>