tenfourfox/dom/svg/crashtests/327705-1.svg
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
378 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg">
<script>
function init()
{
var a = document.getElementById("a");
var b = document.getElementById("b");
a.appendChild(b);
b.getBBox();
};
window.addEventListener("load", init, false);
</script>
<rect id="a" width="20" height="10"/>
<rect id="b" width="10" height="20"/>
</svg>