blob: 8ac911c1da732105d95cafccb22fa723e5f476e5 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Test math-variant interaction with fontstyle and fontweight</title>
</head>
<body>
<math>
<mrow>
<mtext>A</mtext>
<mtext>A</mtext>
</mrow>
</math>
<p>
<math>
<mn>A</mn>
</math>
</p>
<p>
<math>
<mn fontweight="bold">A</mn>
</math>
</p>
<p>
<math>
<mn fontweight="bold" fontstyle="italic">A</mn>
</math>
</p>
<p>
<math>
<mn fontweight="bold" fontstyle="italic">A</mn>
</math>
</p>
<p>
<math>
<mn fontweight="bold" fontstyle="italic">A</mn>
</math>
</p>
<p>
<math>
<mn>A</mn>
</math>
</p>
</body>
</html>
|