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 manifest="gZipOfflineChild.cacheManifest">
2 <head>
3 <!-- This file is gzipped to create gZipOfflineChild.html -->
4 <title></title>
5 <script type="text/javascript">
7 function finish(success) {
8 window.parent.postMessage(success, "*");
9 }
11 applicationCache.oncached = function() { finish("oncache"); }
12 applicationCache.onnoupdate = function() { finish("onupdate"); }
13 applicationCache.onerror = function() { finish("onerror"); }
15 </script>
16 </head>
18 <body>
19 <h1>Child</h1>
20 </body>
21 </html>