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 <meta charset=utf-8>
3 <title> Layout Helpers </title>
5 <style>
6 html {
7 height: 300%;
8 width: 300%;
9 }
10 div#some {
11 position: absolute;
12 background: black;
13 width: 2px;
14 height: 2px;
15 }
16 iframe {
17 position: absolute;
18 width: 40px;
19 height: 40px;
20 border: 0;
21 }
22 </style>
24 <div id=some></div>
25 <iframe id=frame src='./browser_layoutHelpers_iframe.html'></iframe>