Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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>
13 <body>
15 <table>
16 <tbody>
17 <tr>
18 <td>mpadded: width</td>
19 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
20 <mstyle>
21 <mtext>_</mtext>
22 <mpadded/>
23 <mtext>_</mtext>
24 </mstyle>
25 </math></td>
26 </tr>
27 <tr>
28 <td>mpadded: lspace</td>
29 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
30 <mstyle>
31 <mtext>_</mtext>
32 <mpadded/>
33 <mtext>_</mtext>
34 </mstyle>
35 </math></td>
36 </tr>
37 <tr>
38 <td>mpadded: height</td>
39 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
40 <mstyle>
41 <msup>
42 <mrow>
43 <mtext>_</mtext>
44 <mpadded/>
45 <mtext>_</mtext>
46 </mrow>
47 <mtext>_</mtext>
48 </msup>
49 </mstyle>
50 </math></td>
51 </tr>
52 <tr>
53 <td>mpadded: depth</td>
54 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
55 <mstyle>
56 <msub>
57 <mrow>
58 <mtext>_</mtext>
59 <mpadded/>
60 <mtext>_</mtext>
61 </mrow>
62 <mtext>_</mtext>
63 </msub>
64 </mstyle>
65 </math></td>
66 </tr>
67 <tr>
68 <td>mspace: width</td>
69 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
70 <mstyle>
71 <mtext>_</mtext>
72 <mspace/>
73 <mtext>_</mtext>
74 </mstyle>
75 </math></td>
76 </tr>
77 <tr>
78 <td>mspace: height</td>
79 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
80 <mstyle>
81 <msup>
82 <mrow>
83 <mtext>_</mtext>
84 <mspace/>
85 <mtext>_</mtext>
86 </mrow>
87 <mtext>_</mtext>
88 </msup>
89 </mstyle>
90 </math></td>
91 </tr>
92 <tr>
93 <td>mspace: depth</td>
94 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
95 <mstyle>
96 <msub>
97 <mrow>
98 <mtext>_</mtext>
99 <mspace/>
100 <mtext>_</mtext>
101 </mrow>
102 <mtext>_</mtext>
103 </msub>
104 </mstyle>
105 </math></td>
106 </tr>
107 <tr>
108 <td>maction: selection</td>
109 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
110 <mstyle>
111 <maction actiontype="toggle">
112 <mn>1</mn>
113 <mn>2</mn>
114 </maction>
115 </mstyle>
116 </math></td>
117 </tr>
118 <tr>
119 <td>mtable: align</td>
120 <td><math xmlns="http://www.w3.org/1998/Math/MathML">
121 <mstyle>
122 <mrow>
123 <mtext>_</mtext>
124 <mtable>
125 <mtr>
126 <mtd>
127 <mtext>―</mtext>
128 </mtd>
129 </mtr>
130 <mtr>
131 <mtd>
132 <mtext>―</mtext>
133 </mtd>
134 </mtr>
135 </mtable>
136 <mtext>_</mtext>
137 </mrow>
138 </mstyle>
139 </math></td>
140 </tr>
141 </tbody>
142 </table>
143 </body>
144 </html>