summaryrefslogtreecommitdiffstats
path: root/layout/svg/crashtests/464374-1.svg
blob: 9844e5187f2675c14fcfdd3bdf700549d0f086ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<svg xmlns="http://www.w3.org/2000/svg" onload="boom();">

<script type="text/javascript">

function boom()
{
  document.getElementById("b").appendChild(document.createElementNS("http://www.w3.org/1998/Math/MathML", "math"));
  document.getElementById("defs").setAttribute("filter", "url(#a)");
}

</script>

<defs id="defs"><filter id="a"/><g id="b"><rect/></g></defs>

</svg>