Thu, 15 Jan 2015 15:59:08 +0100
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 <!-- Any copyright is dedicated to the Public Domain.
3 - http://creativecommons.org/publicdomain/zero/1.0/ -->
4 <html>
5 <head>
6 <link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
7 <style>
8 #scroll {
9 height: 100px;
10 }
11 #sticky {
12 height: 10px;
13 background-color: black;
14 }
15 </style>
16 </head>
17 <body>
18 <div id="scroll">
19 <div style="height: 50px"></div>
20 <div id="sticky"></div>
21 </div>
22 </body>
23 </html>