Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/base/crashtests/432752-1.svg
<svg xmlns:xlink="http://www.w3.org/1999/xlink"
onload="boom();">
<script type="text/javascript">
function boom()
{
var a = document.getElementById("a");
var b = document.getElementById("b");
var d = document.getElementById("d");
d.appendChild(b);
a.appendChild(document.createTextNode("A"));
}
</script>
<g id="a"></g>
<use xlink:href="#a" id="b"/>
<use xlink:href="#d">
<g id="d"/>
</use>
</svg>