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 class="reftest-wait">
3 <link rel='stylesheet' type='text/css' href='style.css'>
4 <script>
5 function onloadHandler()
6 {
7 var fieldsets = document.getElementsByTagName('fieldset');
8 fieldsets[0].disabled = false;
9 document.documentElement.className='';
10 }
11 </script>
12 <body onload="onloadHandler();">
13 <fieldset disabled class="enabled">
14 <fieldset class="enabled">
15 <fieldset class="enabled"></fieldset>
16 </fieldset>
17 </fieldset>
18 </body>
19 </html>