layout/reftests/table-width/colspan-percent-distribution-1-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 <html>
     2 <head>
     3 <style type="text/css">
     4   table { width: 200px;             }
     5   td    { border: 1px solid black;  }
     6   td.a  { background: lightgreen;   }
     7   td.b  { background: orange;       }
     9   /* cellspacing=0 cellpadding=0 */
    10   table  { border-spacing: 0 }
    11   td, th { padding: 0 }
    12 </style>
    13 </head>
    14 <body>
    15 <table>
    16   <tr>
    17     <td class="a" width="100%">x</td>
    18     <td class="b">x</td>
    19   </tr>
    20   <tr>
    21     <td/><td/>
    22   </tr>
    23 </table>
    24 </body>
    25 </html>

mercurial