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 <html>
3 <head>
4 <style type="text/css">
5 #parent {
6 background-color: green;
7 }
8 #first-child {
9 height: 20px;
10 margin-bottom: 10px;
11 }
12 #last-child {
13 margin-top: 30px;
14 margin-bottom: 40px;
15 }
16 #separator {
17 height: 20px;
18 margin-top: 20px;
19 background-color: green;
20 }
21 </style>
22 </head>
23 <body>
24 <div id="parent">
25 <div id="first-child"></div>
26 <div id="last-child"></div>
27 </div>
28 <div id="separator"></div>
29 </body>
30 </html>