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 <!doctype html>
2 <html>
3 <head>
4 <title>More mathvariant tests</title>
5 </head>
6 <body>
7 <math>
8 <mrow>
9 <!-- mathvariant on characters that are already in the Mathematical
10 AlphanumericSymbols or are exceptions (should not have any
11 effect).-->
12 <mtext>𝒜</mtext>
13 <mtext>ℬ</mtext>
14 <!-- mathvariant on characters for which there is no equivalent mathvariant
15 form in Unicode (should not have any effect) -->
16 <mtext>á</mtext>
17 </mrow>
18 </math>
20 <p>
22 <math>
23 <mrow>
24 <!-- mathvariant on multi-char token elements (should apply to all the
25 characters) -->
26 <mtext>𝙰𝙰𝙰</mtext>
27 </mrow>
28 </math>
30 <p>
32 <math>
33 <mrow>
34 <!-- mathvariant on mstyle (should apply to all token element descendants
35 like single-char mi, mtext etc) -->
36 <mtext mathvariant="sans-serif">cos</mtext>
37 <mo>⁡</mo>
38 <mi mathvariant="sans-serif">x</mi>
39 </mrow>
40 </math>
42 <p>
44 <math>
45 <mrow>
46 <!-- mathvariant on math (should apply to all token element descendants
47 like single-char mi, mtext etc) -->
48 <mtext mathvariant="sans-serif">cos</mtext>
49 <mo>⁡</mo>
50 <mi mathvariant="sans-serif">x</mi>
51 </mrow>
52 </math>
54 </body>
55 </html>