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 <!DOCTYPE html>
2 <body>
3 <iframe></iframe>
4 <script>
5 var win = window.frames[0];
6 win.document.open();
7 win.document.write("<!DOCTYPE html><html><head></head><body></body></html>");
8 win.document.close();
9 win.document.body.innerHTML = "<link rel='stylesheet' type='text/css' href='outer-sheet.css' />";
10 win.document.body.innerHTML += "<p style='padding:2px'>test</p>";
11 </script>
12 </body>