mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
21 lines
397 B
XML
21 lines
397 B
XML
|
<?xml version="1.0"?>
|
||
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
class="reftest-wait">
|
||
|
<script type="text/javascript">
|
||
|
<![CDATA[
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
try {
|
||
|
document.getElementById("x").beginElementAt(36028797018963970);
|
||
|
} catch (e) { }
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
]]>
|
||
|
</script>
|
||
|
<animate id="x" begin="a" />
|
||
|
</svg>
|