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 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
2 <tree>
3 <splitter style="overflow: scroll;">
4 <treecols style="overflow: scroll; display: block;">
5 <treeitem id="mw_b" style=" display: list-item;"/>
6 </treecols>
7 </splitter>
8 </tree>
10 <script xmlns="http://www.w3.org/1999/xhtml">
11 function doe() {
12 window.addEventListener('DOMAttrModified', function(e) {document.removeChild(document.documentElement); }, true);
13 var y=document.getElementById('mw_b');
14 y.parentNode.removeChild(y);
15 }
16 setTimeout(doe, 200);
17 </script>
18 </window>