mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
765 B
XML
28 lines
765 B
XML
|
<svg width="100%" height="100%" version="1.1"
|
||
|
xmlns="http://www.w3.org/2000/svg" xmlns:html="http://www.w3.org/1999/xhtml" onload="setTimeout(boom, 30);" class="reftest-wait"><html:script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var defs = document.getElementById("defs");
|
||
|
var gb = document.getElementById("Gaussian_Blur");
|
||
|
|
||
|
defs.parentNode.removeChild(defs);
|
||
|
gb.removeChild(gb.firstChild); // remove a whitespace text node (!)
|
||
|
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
</html:script>
|
||
|
|
||
|
<defs id="defs">
|
||
|
<filter id="Gaussian_Blur">
|
||
|
<feGaussianBlur in="SourceGraphic" stdDeviation="3"/>
|
||
|
</filter>
|
||
|
</defs>
|
||
|
|
||
|
<ellipse cx="200" cy="150" rx="70" ry="40"
|
||
|
style="fill:#ff0000;stroke:#000000;
|
||
|
stroke-width:2;filter:url(#Gaussian_Blur)"/>
|
||
|
|
||
|
</svg>
|