1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/xpconnect/crashtests/418139-1.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<svg xmlns="http://www.w3.org/2000/svg" 1.5 + xmlns:xlink="http://www.w3.org/1999/xlink" 1.6 + xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.7 + onload="boom();"> 1.8 + 1.9 +<script type="text/javascript"> 1.10 + 1.11 +function boom() 1.12 +{ 1.13 + document.getElementById("b").style.position = "absolute"; 1.14 + document.getElementById("a").style.color = "green"; 1.15 +} 1.16 + 1.17 +</script> 1.18 + 1.19 +<defs> 1.20 + <g id="a"><xul:listbox/></g> 1.21 +</defs> 1.22 + 1.23 +<g id="b"><use xlink:href="#a"/></g> 1.24 + 1.25 +</svg>