-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (105 loc) · 2.61 KB
/
index.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Test for ink ascent/descent</title>
<meta charset="utf-8"/>
<style>
@font-face {
font-family: 'InkAscentDescent';
src: url('ink-ascent-descent-test.woff');
}
math {
font: 25px InkAscentDescent;
}
.A { color: red; }
.B { color: green; }
.C { color: blue; }
</style>
</head>
<body>
<h1>Test for ink ascent/descent</h1>
<section>
<h2>Text A, B, C and √</h2>
<p style="font-family: monospace">__baseline__<math><mtext class="A">A</mtext></math>__<math><mtext class="B">B</mtext></math>__<math><mtext class="C">C</mtext></math>__<math><mtext>√</mtext></math>__baseline__</p>
</section>
<section>
<h2>Fraction AAA/AAA</h2>
<math display="block">
<mfrac>
<mtext class="A">AAA</mtext>
<mtext class="A">AAA</mtext>
</mfrac>
</math>
</section>
<section>
<h2>Fraction BBB/BBB</h2>
<math display="block">
<mfrac>
<mtext class="B">BBB</mtext>
<mtext class="B">BBB</mtext>
</mfrac>
</math>
</section>
<section>
<h2>Fraction CCC/CCC</h2>
<math display="block">
<mfrac>
<mtext class="C">CCC</mtext>
<mtext class="C">CCC</mtext>
</mfrac>
</math>
</section>
<section>
<h2>Fraction ABC/ABC</h2>
<math display="block">
<mfrac>
<mrow>
<mtext class="A">A</mtext>
<mtext class="B">B</mtext>
<mtext class="C">C</mtext>
</mrow>
<mrow>
<mtext class="A">A</mtext>
<mtext class="B">B</mtext>
<mtext class="C">C</mtext>
</mrow>
</mfrac>
</math>
</section>
<section>
<h2>Square root of AAA</h2>
<math display="block">
<msqrt>
<mtext class="A">AAA</mtext>
</msqrt>
</math>
</section>
<section>
<h2>Square root of BBB</h2>
<math display="block">
<msqrt>
<mtext class="B">BBB</mtext>
</msqrt>
</math>
</section>
<section>
<h2>Square root of CCC</h2>
<math display="block">
<msqrt>
<mtext class="C">CCC</mtext>
</msqrt>
</math>
</section>
<section>
<h2>Fraction AAA/√CCC</h2>
<math display="block">
<mfrac>
<mtext class="A">AAA</mtext>
<mstyle displaystyle="true">
<msqrt><mtext class="C">CCC</mtext></msqrt>
</mstyle>
</mfrac>
</math>
</section>
</body>
</html>