|
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"> |
|
5 |
|
6 <html:script> |
|
7 |
|
8 function boom() |
|
9 { |
|
10 try { |
|
11 document.getElementById("grad2").gradientUnits.baseVal = "y"; |
|
12 } catch (e) { |
|
13 } |
|
14 |
|
15 document.documentElement.removeAttribute("class"); |
|
16 } |
|
17 |
|
18 </html:script> |
|
19 |
|
20 |
|
21 |
|
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> |
|
30 |
|
31 <rect x="20" y="150" width="440" height="80" fill="url(#grad2)" stroke-width="40"/> |
|
32 |
|
33 </svg> |