forked from davidcarlisle/html5mathml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest2.html
executable file
·85 lines (73 loc) · 1.52 KB
/
test2.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
<!doctype html>
<html>
<head>
<title>test 2</title>
<script src="html5mathml.js"></script>
<!--
<script src="iemathml.js"></script>
<script src="webkitmathml.js"></script>
<script src="operamathml.js"></script>
<script src="firefox3mathml.js"></script>
-->
</head>
<body>
<div>
<p>declared empty elements (none, mprescripts, mspace)</p>
<math>
<mfrac><mn>1</mn><mi>a</mi></mfrac>
<mo>-</mo>
<mfrac>
<msup>
<mn>1</mn>
<mn>2</mn>
</msup>
<msqrt><mi>a</mi></msqrt>
</mfrac>
<mo>+</mo>
<mi mathvariant="bold">b</mi>
<mo>+</mo>
<mmultiscripts>
<mi>A</mi>
<none></none>
<mi>i</mi>
<mprescripts></mprescripts>
<none></none>
<mi>k</mi>
</mmultiscripts>
<mspace width="2em"></mspace>
<mi>B</mi>
</math>
<p>empty table cells (<mtd/>)</p>
<math >
<mtable>
<mtr>
<mtd></mtd>
<mtd></mtd>
<mtd><mtext>a</mtext></mtd>
<mtd><mtext>b</mtext></mtd>
<mtd><mtext>c</mtext></mtd>
<mtd id="www"></mtd>
</mtr>
<mtr>
<mtd><mtext>x</mtext></mtd>
<mtd rowspan="3"><mo>(</mo></mtd>
<mtd><mn>1</mn></mtd><mtd><mn>2</mn></mtd><mtd><mn>3</mn></mtd>
<mtd rowspan="3"><mo>)</mo></mtd>
</mtr>
<mtr>
<mtd><mtext>y</mtext></mtd>
<mtd></mtd><mtd colspan="2"><mn>22</mn></mtd>
</mtr>
<mtr>
<mtd><mtext>z</mtext></mtd>
<mtd></mtd><mtd></mtd><mtd><mn>333</mn></mtd>
</mtr>
</mtable>
</math>
<p>attributes</p>
<math>
<msup><mi mathcolor="red">A</mi><mn mathvariant="bold">1</mn></msup>
</math>
</div>
</body>
</html>