no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / svg / crashtests / 369438-2.svg
blob92eea9ee0fd94a6911cdf2af1a9e36c2978ac05e
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>
4 function boom()
6 var defs = document.getElementById("defs");
7 var gb = document.getElementById("Gaussian_Blur");
9 defs.parentNode.removeChild(defs);
10 gb.removeChild(gb.firstChild); // remove a whitespace text node (!)
12 document.documentElement.removeAttribute("class");
15 </html:script>
17 <defs id="defs">
18 <filter id="Gaussian_Blur">
19 <feGaussianBlur in="SourceGraphic" stdDeviation="3"/>
20 </filter>
21 </defs>
23 <ellipse cx="200" cy="150" rx="70" ry="40"
24 style="fill:#ff0000;stroke:#000000;
25 stroke-width:2;filter:url(#Gaussian_Blur)"/>
27 </svg>