|
1 <svg width="100%" height="100%" version="1.1" |
|
2 xmlns="http://www.w3.org/2000/svg" xmlns:html="http://www.w3.org/1999/xhtml" onload="setTimeout(boom, 30);" class="reftest-wait"><html:script> |
|
3 |
|
4 function boom() |
|
5 { |
|
6 var defs = document.getElementById("defs"); |
|
7 var gb = document.getElementById("Gaussian_Blur"); |
|
8 |
|
9 defs.parentNode.removeChild(defs); |
|
10 gb.removeChild(gb.firstChild); // remove a whitespace text node (!) |
|
11 |
|
12 document.documentElement.removeAttribute("class"); |
|
13 } |
|
14 |
|
15 </html:script> |
|
16 |
|
17 <defs id="defs"> |
|
18 <filter id="Gaussian_Blur"> |
|
19 <feGaussianBlur in="SourceGraphic" stdDeviation="3"/> |
|
20 </filter> |
|
21 </defs> |
|
22 |
|
23 <ellipse cx="200" cy="150" rx="70" ry="40" |
|
24 style="fill:#ff0000;stroke:#000000; |
|
25 stroke-width:2;filter:url(#Gaussian_Blur)"/> |
|
26 |
|
27 </svg> |