layout/reftests/mathml/mtable-columnalign-single-mtr.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>
     2 <html>
     3   <head>
     4     <title>Test MathML columnalign</title>
     5   </head>
     6   <body>
     7     <b>columnalign="left"</b> <br />
     8     <math>
     9       <mstyle>
    10         <mtable>
    11           <mtr columnalign="left">
    12             <mtd>
    13               <mtext>123</mtext>
    14             </mtd>
    15             <mtd>
    16               <mtext>123</mtext>
    17             </mtd>
    18             <mtd>
    19               <mtext>123</mtext>
    20             </mtd>
    21           </mtr>
    22           <mtr columnalign="left">
    23             <mtd>
    24               <mtext>12345</mtext>
    25             </mtd>
    26             <mtd>
    27               <mtext>12345</mtext>
    28             </mtd>
    29             <mtd>
    30               <mtext>12345</mtext>
    31             </mtd>
    32           </mtr>
    33           <mtr columnalign="left">
    34             <mtd>
    35               <mtext>1234567</mtext>
    36             </mtd>
    37             <mtd>
    38               <mtext>1234567</mtext>
    39             </mtd>
    40             <mtd>
    41             <mtext>1234567</mtext>
    42             </mtd>
    43           </mtr>
    44         </mtable>
    45       </mstyle>
    46     </math> <br />
    47     <b>columnalign="center"</b> <br />
    48     <math>
    49       <mstyle>
    50         <mtable>
    51           <mtr columnalign="center">
    52             <mtd>
    53               <mtext>123</mtext>
    54             </mtd>
    55             <mtd>
    56               <mtext>123</mtext>
    57             </mtd>
    58             <mtd>
    59               <mtext>123</mtext>
    60             </mtd>
    61           </mtr>
    62           <mtr columnalign="center">
    63             <mtd>
    64               <mtext>12345</mtext>
    65             </mtd>
    66             <mtd>
    67               <mtext>12345</mtext>
    68             </mtd>
    69             <mtd>
    70               <mtext>12345</mtext>
    71             </mtd>
    72           </mtr>
    73           <mtr columnalign="center">
    74             <mtd>
    75               <mtext>1234567</mtext>
    76             </mtd>
    77             <mtd>
    78               <mtext>1234567</mtext>
    79             </mtd>
    80             <mtd>
    81             <mtext>1234567</mtext>
    82             </mtd>
    83           </mtr>
    84         </mtable>
    85       </mstyle>
    86     </math> <br />
    87     <b>columnalign="right"</b> <br />
    88     <math>
    89       <mstyle>
    90         <mtable>
    91           <mtr columnalign="right">
    92             <mtd>
    93               <mtext>123</mtext>
    94             </mtd>
    95             <mtd>
    96               <mtext>123</mtext>
    97             </mtd>
    98             <mtd>
    99               <mtext>123</mtext>
   100             </mtd>
   101           </mtr>
   102           <mtr columnalign="right">
   103             <mtd>
   104               <mtext>12345</mtext>
   105             </mtd>
   106             <mtd>
   107               <mtext>12345</mtext>
   108             </mtd>
   109             <mtd>
   110               <mtext>12345</mtext>
   111             </mtd>
   112           </mtr>
   113           <mtr columnalign="right">
   114             <mtd>
   115               <mtext>1234567</mtext>
   116             </mtd>
   117             <mtd>
   118               <mtext>1234567</mtext>
   119             </mtd>
   120             <mtd>
   121             <mtext>1234567</mtext>
   122             </mtd>
   123           </mtr>
   124         </mtable>
   125       </mstyle>
   126     </math>
   127   </body>
   128 </html>

mercurial