blob: 804bd7658457ceecb5aafc04b4add823e3a44de3 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Test math-variant interaction with fontstyle and fontweight</title>
</head>
<body>
<math>
<mrow>
<mtext mathvariant="normal" fontweight="bold">A</mtext>
<mtext mathvariant="normal" fontstyle="italic">A</mtext>
</mrow>
</math>
<p>
<math>
<mi fontstyle="normal">A</mi>
</math>
</p>
<p>
<math>
<mi fontstyle="normal" fontweight="bold">A</mi>
</math>
</p>
<p>
<math>
<mi fontweight="bold">A</mi>
</math>
</p>
<p>
<math>
<mi fontweight="bold" fontstyle="italic">A</mi>
</math>
</p>
<p>
<math>
<mi fontweight="bold" style="font-style:normal">A</mi>
</math>
</p>
<p>
<math>
<mi fontstyle="normal" style="font-weight:bold">A</mi>
</math>
</p>
</body>
</html>
|