layout/reftests/mathml/dir-10.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.

     1 <!DOCTYPE html>
     2 <html>
     3   <head><title>Test direction: rtl</title></head>
     4   <body>
     5     <p>
     6       math:
     7       <math dir="rtl">
     8         <mi>a</mi>
     9         <mi>b</mi>
    10         <mi>c</mi>
    11       </math>
    12     </p>
    14     <p>
    15       mrow:
    16       <math>
    17         <mrow dir="rtl">
    18           <mi>z</mi>
    19           <mtext>X</mtext>
    20           <mtext>Y</mtext>
    21           <mtext>Z</mtext>
    22           <mi>a</mi>
    23         </mrow>
    24       </math>
    25     </p>
    27     <p>
    28       mstyle(mathcolor=blue):
    29       <math>
    30         <mstyle mathcolor="blue" dir="rtl">
    31           <mi>a</mi>
    32           <mo>+</mo>
    33           <mn>3</mo>
    34           <mo>+</mo>
    35           <mn>9</mn>
    36         </mstyle>
    37       </math>
    38     </p>
    40   </body>
    41 </html>

mercurial