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

mercurial