blob: 52bce9eda7de82fc35c12efe6352acda7ad1d286 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<svg xmlns="http://www.w3.org/2000/svg"
onload="setTimeout(boom, 30);"
class="reftest-wait">
<script style="display: none" type="text/javascript">
<![CDATA[
function boom()
{
var oldGrad = document.getElementById("grad");
oldGrad.parentNode.removeChild(oldGrad);
var newGrad = document.createElementNS("http://www.w3.org/2000/svg", "radialGradient");
newGrad.setAttribute("gradientUnits", "userSpaceOnUse");
newGrad.setAttribute("id", "grad");
document.documentElement.appendChild(newGrad);
document.documentElement.removeAttribute("class");
}
]]>
</script>
<radialGradient id="grad" gradientUnits="userSpaceOnUse" cx="240" cy="210" r="220" fx="240" fy="210">
<stop stop-color="yellow" offset="0"/>
<stop stop-color="green" offset="1"/>
</radialGradient>
<rect x="20" y="150" width="440" height="80" fill="url(#grad)" stroke-width="40"/>
</svg>
|