|
1 <?xml version="1.0" encoding="us-ascii"?> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
3 <head> |
|
4 <meta http-equiv="content-type" |
|
5 content="application/xhtml+xml; charset=us-ascii" /> |
|
6 <title>Test mstyle</title> |
|
7 <style type="text/css"> |
|
8 table { width: 100%; border-collapse: collapse; } |
|
9 td { border: solid black 1px; } |
|
10 </style> |
|
11 </head> |
|
12 |
|
13 <body> |
|
14 |
|
15 <!-- The attributes below should no longer have effect on <mstyle>/<math> |
|
16 elements. See bug 838509 --> |
|
17 |
|
18 <table> |
|
19 <tbody> |
|
20 <tr> |
|
21 <td>mover: accent</td> |
|
22 <td><math xmlns="http://www.w3.org/1998/Math/MathML" accent="false"> |
|
23 <mstyle accent="false"> |
|
24 <mover> |
|
25 <!-- We assume ⏞ is accent in the operator dictionary --> |
|
26 <mrow> |
|
27 <mi>x</mi> |
|
28 <mo>+</mo> |
|
29 <mi>y</mi> |
|
30 <mo>+</mo> |
|
31 <mi>z</mi> |
|
32 </mrow> |
|
33 <mo>⏞</mo> |
|
34 </mover> |
|
35 </mstyle> |
|
36 </math></td> |
|
37 </tr> |
|
38 <tr> |
|
39 <td>munder: accentunder</td> |
|
40 <td><math xmlns="http://www.w3.org/1998/Math/MathML" accentunder="false"> |
|
41 <mstyle accentunder="false"> |
|
42 <munder> |
|
43 <!-- We assume ⏟ is accent in the operator dictionary --> |
|
44 <mrow> |
|
45 <mi>x</mi> |
|
46 <mo>+</mo> |
|
47 <mi>y</mi> |
|
48 <mo>+</mo> |
|
49 <mi>z</mi> |
|
50 </mrow> |
|
51 <mo>⏟</mo> |
|
52 </munder> |
|
53 </mstyle> |
|
54 </math></td> |
|
55 </tr> |
|
56 <tr> |
|
57 <td>munderover: accent, accentunder</td> |
|
58 <td><math xmlns="http://www.w3.org/1998/Math/MathML" accent="false" accentunder="false"> |
|
59 <mstyle accent="false" accentunder="false"> |
|
60 <munderover> |
|
61 <!-- We assume ⏞ and ⏟ are accents in the operator dictionary --> |
|
62 <mrow> |
|
63 <mi>x</mi> |
|
64 <mo>+</mo> |
|
65 <mi>y</mi> |
|
66 <mo>+</mo> |
|
67 <mi>z</mi> |
|
68 </mrow> |
|
69 <mo>⏟</mo> |
|
70 <mo>⏞</mo> |
|
71 </munderover> |
|
72 </mstyle> |
|
73 </math></td> |
|
74 </tr> |
|
75 </tbody> |
|
76 </table> |
|
77 </body> |
|
78 </html> |