layout/reftests/pagination/float-continuations-000.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 PUBLIC "-//W3C//DTD HTML 4.01//EN">
     2 <style type="text/css">
     4 .multicol {
     5   margin: 1em;
     6   border: solid silver;
     7   width: 500px;
     8   -moz-column-width: 100px;
     9   -moz-column-gap: 0;
    10   height: 100px;
    11   position: relative;
    12 }
    14 #clear {
    15   top: 50px;
    16   border-top: 4px solid orange;
    17   width: 100%;
    18   position: absolute;
    19   z-index: -1;
    20 }
    22 .float {
    23   border: aqua 30px;
    24   border-style: none solid;
    25   height: 300px;
    26 }
    28 .pad {
    29   padding-top: 50px;
    30 }
    31 </style>
    33 <body>
    35 <div class="multicol">
    36   <div id="clear"></div>
    37   <div class="pad"></div>
    38   <div class="float">&nbsp;</div>
    39 </div>

mercurial