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 <svg xmlns="http://www.w3.org/2000/svg">
3 <mask id="m">
4 <text>
5 <tspan id="ts" />
6 </text>
7 </mask>
9 <rect width="600" height="400" mask="url(#m)"/>
11 <script>
12 window.addEventListener("load", function() {
13 document.getElementById("ts").style.overflow = "hidden";
14 }, false);
15 </script>
17 </svg>