layout/reftests/mathml/mathvariant-1b.html

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 <!doctype html>
michael@0 2 <html>
michael@0 3
michael@0 4 <head>
michael@0 5 <title>Test mathvariant character mappings</title>
michael@0 6 </head>
michael@0 7 <body>
michael@0 8 <math>
michael@0 9 <mrow>
michael@0 10 <mtext mathvariant="normal">0123456789</mtext>
michael@0 11 </mrow>
michael@0 12 </math>
michael@0 13 <br>
michael@0 14 <math>
michael@0 15 <mrow>
michael@0 16 <mtext mathvariant="bold">
michael@0 17 012345
michael@0 18 6789
michael@0 19 </mtext>
michael@0 20 </mrow>
michael@0 21 </math>
michael@0 22 <br>
michael@0 23 <math>
michael@0 24 <mrow>
michael@0 25 <mtext mathvariant="italic">0123456789</mtext>
michael@0 26 </mrow>
michael@0 27 </math>
michael@0 28 <br>
michael@0 29 <math>
michael@0 30 <mrow>
michael@0 31 <mtext mathvariant="bold-italic">0123456789</mtext>
michael@0 32 </mrow>
michael@0 33 </math>
michael@0 34 <br>
michael@0 35 <math>
michael@0 36 <mrow>
michael@0 37 <mtext mathvariant="script">
michael@0 38 012345
michael@0 39 6789
michael@0 40 </mtext>
michael@0 41 </mrow>
michael@0 42 </math>
michael@0 43 <br>
michael@0 44 <math>
michael@0 45 <mrow>
michael@0 46 <mtext mathvariant="bold-script">
michael@0 47 012345
michael@0 48 6789
michael@0 49 </mtext>
michael@0 50 </mrow>
michael@0 51 </math>
michael@0 52 <br>
michael@0 53 <math>
michael@0 54 <mrow>
michael@0 55 <mtext mathvariant="fraktur">
michael@0 56 012345
michael@0 57 6789
michael@0 58 </mtext>
michael@0 59 </mrow>
michael@0 60 </math>
michael@0 61 <br>
michael@0 62 <math>
michael@0 63 <mrow>
michael@0 64 <mtext mathvariant="double-struck">
michael@0 65 012345
michael@0 66 6789
michael@0 67 </mtext>
michael@0 68 </mrow>
michael@0 69 </math>
michael@0 70 <br>
michael@0 71 <math>
michael@0 72 <mrow>
michael@0 73 <mtext mathvariant="bold-fraktur">
michael@0 74 012345
michael@0 75 6789
michael@0 76 </mtext>
michael@0 77 </mrow>
michael@0 78 </math>
michael@0 79 <br>
michael@0 80 <math>
michael@0 81 <mrow>
michael@0 82 <mtext mathvariant="sans-serif">
michael@0 83 012345
michael@0 84 6789
michael@0 85 </mtext>
michael@0 86 </mrow>
michael@0 87 </math>
michael@0 88 <br>
michael@0 89 <math>
michael@0 90 <mrow>
michael@0 91 <mtext mathvariant="bold-sans-serif">
michael@0 92 012345
michael@0 93 6789
michael@0 94 </mtext>
michael@0 95 </mrow>
michael@0 96 </math>
michael@0 97 <br>
michael@0 98 <math>
michael@0 99 <mrow>
michael@0 100 <mtext mathvariant="sans-serif-italic">
michael@0 101 012345
michael@0 102 6789
michael@0 103 </mtext>
michael@0 104 </mrow>
michael@0 105 </math>
michael@0 106 <br>
michael@0 107 <math>
michael@0 108 <mrow>
michael@0 109 <mtext mathvariant="sans-serif-bold-italic">
michael@0 110 012345
michael@0 111 6789
michael@0 112 </mtext>
michael@0 113 </mrow>
michael@0 114 </math>
michael@0 115 <br>
michael@0 116 <math>
michael@0 117 <mrow>
michael@0 118 <mtext mathvariant="monospace">
michael@0 119 012345
michael@0 120 6789
michael@0 121 </mtext>
michael@0 122 </mrow>
michael@0 123 </math>
michael@0 124 <br>
michael@0 125 </body>
michael@0 126 </html>

mercurial