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 class="reftest-wait">
2 <head>
3 <script>
5 function boom()
6 {
7 document.getElementById("ta").style.overflow = "scroll";
8 setTimeout(boom2, 12);
9 }
11 function boom2()
12 {
13 document.getElementById("ta").style.overflow = "";
14 setTimeout(boom, 12);
15 }
17 function cont()
18 {
19 document.documentElement.removeAttribute("class");
20 }
21 </script>
22 </head>
24 <body onload="boom(); setTimeout(cont, 800);">
26 <textarea id="ta">x</textarea>
28 </body>
29 </html>