layout/reftests/scrolling/uncovering-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>
     5 body {
     6   width: 1500px;
     7   overflow: hidden;
     8 }
     9 div#bottom {
    10   position: fixed;
    11   left: 0;
    12   top: 0;
    13   height: 200px;
    14   width: 200px;
    15   background: green;
    16 }
    17 </style>
    18 </head>
    19 <body>
    20 <div id="bottom"></div>
    21 <div style="width:600px; height:100px; background:pink;"></div>
    22 </body>
    23 </html>

mercurial