blob: 82a57f81b0b9f9438439b07b9dd30a5e7454e3cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<script type="text/javascript">
function boom()
{
var f = document.getElementById("filter1");
f.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "feImage"));
f.appendChild(document.getElementById("rect"));
}
window.addEventListener("load", boom, false);
</script>
<filter id="filter1"/><rect id="rect" filter="url(#filter1)"/>
</svg>
|