layout/reftests/bugs/370525-rowspan-2a.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 <html>
     2 <head>
     3 <link rel="stylesheet" href="370525-style.css"/>
     4 </head>
     6 <body>
     7 rowspan=2 and specified height on a sibling of the cell with percent-height div.
     8 <table>
     9  <tr>
    10    <td style="background: lightgreen">
    11     <div style="height: 75%">
    12      height=75% / ignored
    13     </div>
    14     blah
    15    </td>
    16    <td  style="background: lightblue" height="200px"  rowspan="2">
    17     height=200px.
    18    </td>
    19  </tr>
    20  <tr>
    21    <td style="background: orange">
    22    2nd row, 1st column
    23    </td>
    24  </tr>
    25 </table>
    26 </body>
    27 </html>

mercurial