Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/svg/crashtests/841163-1.svg
<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>