layout/reftests/mathml/mtable-width.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>
     4     <title>Check that mtable supports the width attribute</title>
     5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
     6   </head>
     8   <body>
    10 <div>
    11     <math>
    12       <mtext>|</mtext>
    13       <mtable width="8em">
    14         <mtr>
    15           <mtd></mtd>
    16         </mtr>
    17       </mtable>
    18       <mtext>|</mtext>
    19     </math>    
    20 </div>
    21 <div>
    22     <math>
    23       <mtext>|</mtext>
    24       <mtable width="30px">
    25         <mtr>
    26           <mtd></mtd>
    27         </mtr>
    28       </mtable>
    29       <mtext>|</mtext>
    30     </math>    
    31 </div>
    32 <div>
    33     <math>
    34       <mtext>|</mtext>
    35       <mtable width="auto">
    36         <mtr>
    37           <mtd></mtd>
    38         </mtr>
    39       </mtable>
    40       <mtext>|</mtext>
    41     </math>    
    42 </div>
    44   </body>
    45 </html>

mercurial