Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <svg xmlns="http://www.w3.org/2000/svg">
3 <script type="text/javascript">
5 window.addEventListener("load", boom, false);
7 function boom()
8 {
9 document.getElementById("rect").setAttribute("filter", "url(#filter)");
10 document.getElementById("defs").setAttribute("fill", "red");
11 }
13 </script>
15 <defs id="defs"><filter id="filter"/><rect id="rect"/></defs>
17 </svg>