Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 <html>
2 <body>
3 la la la la
4 <script>
5 var gotStorageEvent = false;
6 window.addEventListener('storage', function(ev) {
7 gotStorageEvent = true;
8 }, false);
10 window.addEventListener('message', function(ev) {
11 if (['data:true', 'data:false', 'reply'].indexOf(ev.data) != -1)
12 return;
13 if (ev.data == 'query?') {
14 postMessage('data:' + gotStorageEvent, 'http://mochi.test:8888');
15 return;
16 }
17 localStorage['key'] = 'ablooabloo';
18 postMessage('reply', 'http://mochi.test:8888');
19 }, false);
20 </script>
21 </body>
22 </html>