layout/reftests/margin-collapsing/table-caption-top-2-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 html>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 .block {
     6  height: 20px;
     7  background-color: green;
     8  margin-bottom: 30px;
     9 }
    10 #table {
    11  width: 100px;
    12 }
    13 #caption {
    14  height: 20px;
    15  margin-bottom: 20px;
    16  background-color: blue;
    17 }
    18 #cell {
    19  height: 20px;
    20  margin-bottom: 10px;
    21  background-color: orange;
    22 }
    23 </style>
    24 </head>
    25 <body>
    26 <div class="block"></div>
    27 <div id="table">
    28  <div id="caption"></div>
    29  <div id="cell"></div>
    30 </div>
    31 <div class="block"></div>
    32 </body>
    33 </html>

mercurial