mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
20 lines
348 B
XML
20 lines
348 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
||
|
onload="setTimeout(boom, 30);"
|
||
|
class="reftest-wait">
|
||
|
|
||
|
<html:script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("rect").getBBox();
|
||
|
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
</html:script>
|
||
|
|
||
|
<rect id="rect" />
|
||
|
|
||
|
</svg>
|