Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>