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 #a {
6 background-color: green;
7 }
8 #b {
9 height: 20px;
10 }
11 #c {
12 margin-top: 30px;
13 margin-bottom: 40px;
14 height: 0;
15 }
16 #d {
17 height: 10px; width: 100px;
18 background-color: red;
19 }
20 #e {
21 height: 20px;
22 background-color: green;
23 }
24 </style>
25 </head>
26 <body>
27 <div id="a">
28 <div id="b"></div>
29 <div id="c">
30 <div id="d"></div>
31 </div>
32 </div>
33 <div id="e"></div>
34 </body>
35 </html>