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 <html>
2 <head>
3 <script>
4 if (location.search == '?broken') {
5 // Load something non-https.
6 var s = document.createElement('script');
7 s.src = 'http://example.com/dom/browser-element/mochitest/file_empty_script.js';
8 document.head.appendChild(s);
9 }
10 </script>
11 </head>
13 <body>
14 file_browserElement_SecurityChange.html.
15 </body>
16 </html>