layout/reftests/mathml/table-width-4-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>table-width-4</title>
     5     <meta charset="utf-8"/>
     6     <style type="text/css">
     7       html { background-color: grey; }
     8       td { border: 1px solid white;
     9       padding-top: 0;
    10       padding-bottom: 0;
    11       padding-right: 2px;
    12       padding-left: 1px;
    13       background-color: black;
    14       color: black; }
    15     </style>
    16   </head>
    17   <body>
    19     <table>
    20       <tr>
    21         <td>
    22           <math><mphantom><mi>ℓ</mi><mi>i</mi></mphantom></math>
    23         </td>
    24       </tr>
    25     </table>
    26     <table>
    27       <tr>
    28         <td>
    29           <math><mphantom><mtext>ℓ</mtext><mi>i</mi></mphantom></math>
    30         </td>
    31       </tr>
    32     </table>
    33     <table>
    34       <tr>
    35         <td>
    36           <math><mphantom><mtext style="font-style: italic">ℓ</mtext><mi>i</mi></mphantom></math>
    37         </td>
    38       </tr>
    39     </table>
    40     <table>
    41       <tr>
    42         <td>
    43           <math><mphantom><mtext mathvariant="script">l</mtext><mi>i</mi></mphantom></math>
    44         </td>
    45       </tr>
    46     </table>
    47     <table>
    48       <tr>
    49         <td>
    50           <math><mphantom><mi mathvariant="script">l</mi><mi>i</mi></mphantom></math>
    51         </td>
    52       </tr>
    53     </table>
    54     <table>
    55       <tr>
    56         <td>
    57           <math><mphantom><mi mathvariant="script">l</mi><mi>i</mi></mphantom></math>
    58         </td>
    59       </tr>
    60     </table>
    62   </body>
    63 </html>

mercurial