1<!doctype html>
2<html>
3 <head>
4 <title>negative mspace</title>
5 <meta charset="utf-8"/>
6 </head>
7 <body>
8 <!-- Negative space in a <math> element. -->
9 <table>
10 <tr>
11 <td style="border: 1px solid black">
12 <math>
13 <mspace width="2em" height="1em" mathbackground="red"></mspace>
14 <mspace width="-1em"/>
15 <mspace width="1em" height="1em" mathbackground="blue"></mspace>
16 </math>
17 </td>
18 </tr>
19 </table>
20 <!-- Negative space in an <mrow> element. -->
21 <table>
22 <tr>
23 <td style="border: 1px solid black">
24 <math>
25 <mrow>
26 <mspace width="2em" height="1em" mathbackground="red"></mspace>
27 <mspace width="-1em"/>
28 <mspace width="1em" height="1em" mathbackground="blue"></mspace>
29 </mrow>
30 </math>
31 </td>
32 </tr>
33 </table>
34 <!-- Negative space in an <msqrt> element. -->
35 <table>
36 <tr>
37 <td style="border: 1px solid black">
38 <math>
39 <msqrt>
40 <mspace width="2em" height="1em" mathbackground="red"></mspace>
41 <mspace width="-1em"/>
42 <mspace width="1em" height="1em" mathbackground="blue"></mspace>
43 </msqrt>
44 </math>
45 </td>
46 </tr>
47 </table>
48 <!-- Negative space as a first child of an <mrow> element. -->
49 <table>
50 <tr>
51 <td style="border: 1px solid black">
52 <math>
53 <mspace width="2em" height="1em" mathbackground="red"></mspace>
54 <mrow>
55 <mspace width="-1em"/>
56 <mspace width="1em" height="1em" mathbackground="blue"></mspace>
57 </mrow>
58 </math>
59 </td>
60 </tr>
61 </table>
62 <!-- Negative space as a last child of an <mrow> element. -->
63 <table>
64 <tr>
65 <td style="border: 1px solid black">
66 <math>
67 <mrow>
68 <mspace width="2em" height="1em" mathbackground="red"></mspace>
69 <mspace width="-1em"/>
70 </mrow>
71 <mspace width="1em" height="1em" mathbackground="blue"></mspace>
72 </math>
73 </td>
74 </tr>
75 </table>
76 <!-- Two consecutive negative spaces. -->
77 <table>
78 <tr>
79 <td style="border: 1px solid black">
80 <math>
81 <mspace width="2em" height="1em" mathbackground="red"></mspace>
82 <mspace width="-.5em"/>
83 <mspace width="-.5em"/>
84 <mspace width="1em" height="1em" mathbackground="blue"></mspace>
85 </math>
86 </td>
87 </tr>
88 </table>
89 </body>
90</html>