tenfourfox/dom/svg/crashtests/327705-1.svg

19 lines
378 B
XML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<?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>