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" version="1.1"
2 xmlns:xlink="http://www.w3.org/1999/xlink"
3 onload="boom();">
5 <script><![CDATA[
7 // reftest for bug 467498
9 function boom()
10 {
11 var rect = document.getElementById("rect");
12 rect.setAttribute("height", "100%");
13 }
15 ]]></script>
17 <g style="fill: blue;">
18 <g id="g1">
19 <rect id="rect" x="20%" width="4%" height="20%"/>
20 </g>
21 </g>
23 <g style="fill: green;">
24 <g id="g2">
25 <use x="20%" xlink:href="#g1"/>
26 </g>
27 </g>
29 <g style="fill: red;">
30 <use x="20%" xlink:href="#g2"/>
31 </g>
33 </svg>