mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
30 lines
514 B
XML
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>
|