layout/reftests/mathml/scale-stretchy-1.xhtml

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <html xmlns="http://www.w3.org/1999/xhtml">
     3   <head>
     4     <title>Maximal size for a vertical arrow stretched by scaling</title>
     5   </head>
     7   <body>
     9     <table style="position: absolute;">
    10       <tr>
    11         <td><div style="height: 200px; width: 5px; background: black"/></td>
    12         <td>
    13           <math xmlns="http://www.w3.org/1998/Math/MathML">
    14             <mrow>
    15               <mspace height="50px" depth="50px" width="5px"
    16                       style="background: yellow" />
    17               <mo style="color: blue;">&#x290B;</mo>
    18             </mrow>
    19           </math>
    20         </td>
    21       </tr>
    22     </table>
    24     <table style="position: absolute;">
    25       <tr>
    26         <td><div style="height: 200px; width: 5px; background: black"/></td>
    27         <td>
    28           <math xmlns="http://www.w3.org/1998/Math/MathML">
    29             <mrow>
    30               <mspace height="50px" depth="50px" width="5px"
    31                       style="background: yellow" />
    32               <mspace height="55px" depth="55px" width="50px"
    33                       style="background: red;"/>
    34             </mrow>
    35           </math>
    36         </td>
    37       </tr>
    38     </table>
    40   </body>
    41 </html>

mercurial