layout/reftests/mathml/math-display-ref.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 <html>
     2   <body>
     3     <math>
     4       <munderover>
     5         <mo>&sum;</mo>
     6         <mi>b</mi>
     7         <mi>c</mi>
     8       </munderover>
     9     </math>
    10     <math displaystyle="true">
    11       <munderover>
    12         <mo>&sum;</mo>
    13         <mi>b</mi>
    14         <mi>c</mi>
    15       </munderover>
    16     </math>
    17     <math display="inline" displaystyle="true">
    18       <munderover>
    19         <mo>&sum;</mo>
    20         <mi>b</mi>
    21         <mi>c</mi>
    22       </munderover>
    23     </math>
    24     <math display="block" displaystyle="true">
    25       <munderover>
    26         <mo>&sum;</mo>
    27         <mi>b</mi>
    28         <mi>c</mi>
    29       </munderover>
    30     </math>
    31     <math displaystyle="false">
    32       <munderover>
    33         <mo>&sum;</mo>
    34         <mi>b</mi>
    35         <mi>c</mi>
    36       </munderover>
    37     </math>
    38     <math display="inline" displaystyle="false">
    39       <munderover>
    40         <mo>&sum;</mo>
    41         <mi>b</mi>
    42         <mi>c</mi>
    43       </munderover>
    44     </math>
    45     <math display="block" displaystyle="false">
    46       <munderover>
    47         <mo>&sum;</mo>
    48         <mi>b</mi>
    49         <mi>c</mi>
    50       </munderover>
    51     </math>
    52   </body>
    53 </html>

mercurial