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="tspan" />
6 </text>
7 </mask>
9 <rect width="600" height="400" mask="url(#m)"/>
11 <script>
13 window.addEventListener("load", function() {
14 document.getElementById("tspan").style.dominantBaseline = "alphabetic";
15 }, false);
17 </script>
19 </svg>