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.
michael@0 | 1 | <svg xmlns="http://www.w3.org/2000/svg" |
michael@0 | 2 | xmlns:xlink="http://www.w3.org/1999/xlink" |
michael@0 | 3 | onload="boom();" |
michael@0 | 4 | class="reftest-wait"> |
michael@0 | 5 | |
michael@0 | 6 | <script> |
michael@0 | 7 | |
michael@0 | 8 | function boom() |
michael@0 | 9 | { |
michael@0 | 10 | var grad1 = document.getElementById("grad1"); |
michael@0 | 11 | var grad2 = document.getElementById("grad2"); |
michael@0 | 12 | |
michael@0 | 13 | grad1.appendChild(grad2); |
michael@0 | 14 | |
michael@0 | 15 | setTimeout(function() { |
michael@0 | 16 | grad1.removeChild(grad2); |
michael@0 | 17 | document.documentElement.removeAttribute("class"); |
michael@0 | 18 | }, 30); |
michael@0 | 19 | } |
michael@0 | 20 | |
michael@0 | 21 | </script> |
michael@0 | 22 | |
michael@0 | 23 | <linearGradient id="grad1" gradientUnits="objectBoundingBox" x1="0" y1="0" x2="1" y2="0"> |
michael@0 | 24 | <stop id="green" stop-color="#00dd00" offset="0"/> |
michael@0 | 25 | <stop id="blue" stop-color="#0000dd" offset="1"/> |
michael@0 | 26 | </linearGradient> |
michael@0 | 27 | |
michael@0 | 28 | <linearGradient id="grad2" xlink:href="#grad1"/> |
michael@0 | 29 | |
michael@0 | 30 | <rect x="20" y="20" width="440" height="80" fill="url(#grad2)" /> |
michael@0 | 31 | |
michael@0 | 32 | </svg> |