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

30 lines
514 B
XML

<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<filter id="f"/>
<g filter="url(#f)">
<text>AB</text>
</g>
<script>
function forceFrameConstruction()
{
document.documentElement.getBoundingClientRect();
}
function boom()
{
document.getElementsByTagName("text")[0].firstChild.splitText(1);
forceFrameConstruction();
document.normalize();
forceFrameConstruction();
document.documentElement.removeAttribute("class");
}
window.addEventListener("load", boom, false);
</script>
</svg>