layout/reftests/margin-collapsing/column-sibling-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 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 #block1, #block2 {
     6  height: 20px;
     7  background-color: orange;
     8 }
     9 #multi-column {
    10  height: 20px;
    11  background-color: blue;
    12 }
    13 .spacer {
    14  height: 20px;
    15 }
    16 </style>
    17 </head>
    18 <body>
    19 <div id="block1"></div>
    20 <div class="spacer"></div>
    21 <div id="multi-column"></div>
    22 <div class="spacer"></div>
    23 <div id="block2"></div>
    24 </body>
    25 </html>

mercurial