Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / dom / svg / crashtests / 428228-1.svg
blobfb4fd8bb45c6675b0855fee9c38a91d06bd3e822
1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg">
2 <head>
3 <script type="text/javascript">
5 // Test that removing a direct child element of an SVG <svg> doesnt' crash:
7 function boom()
9 document.getElementById("s").removeChild(document.getElementById("r"));
12 </script>
13 </head>
15 <body onload="boom();">&#x06C0;<svg:svg id="s"><svg:rect id="r"/></svg:svg></body>
17 </html>