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.
michael@0 | 1 | <?xml version="1.0" encoding="us-ascii"?> |
michael@0 | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <meta http-equiv="content-type" |
michael@0 | 5 | content="application/xhtml+xml; charset=us-ascii" /> |
michael@0 | 6 | <title>Test mstyle</title> |
michael@0 | 7 | <style type="text/css"> |
michael@0 | 8 | table { width: 100%; border-collapse: collapse; } |
michael@0 | 9 | td { border: solid black 1px; } |
michael@0 | 10 | </style> |
michael@0 | 11 | </head> |
michael@0 | 12 | |
michael@0 | 13 | <body> |
michael@0 | 14 | |
michael@0 | 15 | <table> |
michael@0 | 16 | <tbody> |
michael@0 | 17 | <tr> |
michael@0 | 18 | <td>mo: form</td> |
michael@0 | 19 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 20 | <mstyle> |
michael@0 | 21 | <mrow> |
michael@0 | 22 | <!-- We assume that the infix/postfix forms of _ do --> |
michael@0 | 23 | <!-- not have the same lspace/rspace values in the operator dictionary --> |
michael@0 | 24 | <mtext>_</mtext> |
michael@0 | 25 | <mo>_</mo> |
michael@0 | 26 | <mtext>_</mtext> |
michael@0 | 27 | </mrow> |
michael@0 | 28 | </mstyle> |
michael@0 | 29 | </math></td> |
michael@0 | 30 | </tr> |
michael@0 | 31 | <tr> |
michael@0 | 32 | <td>mo: lspace, rspace</td> |
michael@0 | 33 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 34 | <mstyle> |
michael@0 | 35 | <mrow> |
michael@0 | 36 | <!-- We assume that the infix form of _ has --> |
michael@0 | 37 | <!-- nonzero lspace/rspace values in the operator dictionary --> |
michael@0 | 38 | <mtext>_</mtext> |
michael@0 | 39 | <mo>_</mo> |
michael@0 | 40 | <mtext>_</mtext> |
michael@0 | 41 | </mrow> |
michael@0 | 42 | </mstyle> |
michael@0 | 43 | </math></td> |
michael@0 | 44 | </tr> |
michael@0 | 45 | <tr> |
michael@0 | 46 | <td>mo: stretchy</td> |
michael@0 | 47 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 48 | <mstyle> |
michael@0 | 49 | <mover> |
michael@0 | 50 | <!-- We assume that the arrow has stretchy=true in the operator dictionary --> |
michael@0 | 51 | <mtext>abcd</mtext> |
michael@0 | 52 | <mo>→</mo> |
michael@0 | 53 | </mover> |
michael@0 | 54 | </mstyle> |
michael@0 | 55 | </math></td> |
michael@0 | 56 | </tr> |
michael@0 | 57 | <tr> |
michael@0 | 58 | <td>mo: accent</td> |
michael@0 | 59 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 60 | <mstyle> |
michael@0 | 61 | <mover> |
michael@0 | 62 | <!-- We assume ⏞ has accent=true in the operator dictionary --> |
michael@0 | 63 | <mrow> |
michael@0 | 64 | <mi>x</mi> |
michael@0 | 65 | <mo>+</mo> |
michael@0 | 66 | <mi>y</mi> |
michael@0 | 67 | <mo>+</mo> |
michael@0 | 68 | <mi>z</mi> |
michael@0 | 69 | </mrow> |
michael@0 | 70 | <mo>⏞</mo> |
michael@0 | 71 | </mover> |
michael@0 | 72 | </mstyle> |
michael@0 | 73 | </math></td> |
michael@0 | 74 | </tr> |
michael@0 | 75 | <tr> |
michael@0 | 76 | <td>mo: maxsize</td> |
michael@0 | 77 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 78 | <mstyle> |
michael@0 | 79 | <mo>(</mo> |
michael@0 | 80 | <mspace height="3em"/> |
michael@0 | 81 | </mstyle> |
michael@0 | 82 | </math></td> |
michael@0 | 83 | </tr> |
michael@0 | 84 | <tr> |
michael@0 | 85 | <td>mo: minsize</td> |
michael@0 | 86 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 87 | <mstyle> |
michael@0 | 88 | <mo>(</mo> |
michael@0 | 89 | <mspace height="1em"/> |
michael@0 | 90 | </mstyle> |
michael@0 | 91 | </math></td> |
michael@0 | 92 | </tr> |
michael@0 | 93 | <tr> |
michael@0 | 94 | <td>mo: symmetric</td> |
michael@0 | 95 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 96 | <!-- We assume that ( has symmetric=true in the operator dictionary --> |
michael@0 | 97 | <mstyle> |
michael@0 | 98 | <mtext>_</mtext> |
michael@0 | 99 | <mo minsize="2">(</mo> |
michael@0 | 100 | <mtext>_</mtext> |
michael@0 | 101 | </mstyle> |
michael@0 | 102 | </math></td> |
michael@0 | 103 | </tr> |
michael@0 | 104 | <tr> |
michael@0 | 105 | <td>mo: movablelimits</td> |
michael@0 | 106 | <td><math xmlns="http://www.w3.org/1998/Math/MathML"> |
michael@0 | 107 | <!-- We assume that ∑ has movablelimits=true in the operator dictionary --> |
michael@0 | 108 | <mstyle> |
michael@0 | 109 | <munderover> |
michael@0 | 110 | <mo>∑</mo> |
michael@0 | 111 | <mi>a</mi> |
michael@0 | 112 | <mi>b</mi> |
michael@0 | 113 | </munderover> |
michael@0 | 114 | </mstyle> |
michael@0 | 115 | </math></td> |
michael@0 | 116 | </tr> |
michael@0 | 117 | <tr> |
michael@0 | 118 | <td>mo: largeop</td> |
michael@0 | 119 | <td><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> |
michael@0 | 120 | <!-- We assume that ∑ has largeop=true in the operator dictionary --> |
michael@0 | 121 | <mstyle> |
michael@0 | 122 | <mo>∑</mo> |
michael@0 | 123 | </mstyle> |
michael@0 | 124 | </math></td> |
michael@0 | 125 | </tr> |
michael@0 | 126 | <!-- |
michael@0 | 127 | fence: This attribute generally has no direct effect on the visual rendering. |
michael@0 | 128 | separator: This attribute generally has no direct effect on the visual rendering. |
michael@0 | 129 | --> |
michael@0 | 130 | </tbody> |
michael@0 | 131 | </table> |
michael@0 | 132 | </body> |
michael@0 | 133 | </html> |