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"
2 xmlns:html="http://www.w3.org/1999/xhtml"
3 onload="setTimeout(boom, 200);"
4 class="reftest-wait">
6 <html:script>
8 function boom()
9 {
10 try {
11 document.getElementById("grad2").gradientUnits.baseVal = "y";
12 } catch (e) {
13 }
15 document.documentElement.removeAttribute("class");
16 }
18 </html:script>
22 <radialGradient id="grad2" gradientUnits="userSpaceOnUse" cx="240" cy="210" r="220" fx="240" fy="210">
23 <stop stop-color="black" offset="0"/>
24 <stop stop-color="yellow" offset="0.2"/>
25 <stop stop-color="red" offset="0.4"/>
26 <stop stop-color="blue" offset="0.6"/>
27 <stop stop-color="white" offset="0.8"/>
28 <stop stop-color="green" offset="1"/>
29 </radialGradient>
31 <rect x="20" y="150" width="440" height="80" fill="url(#grad2)" stroke-width="40"/>
33 </svg>