mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
17 lines
315 B
XML
17 lines
315 B
XML
<svg xmlns="http://www.w3.org/2000/svg"
|
|
class="reftest-wait">
|
|
|
|
<defs><path id="x"/></defs>
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementById("x").style.transform = "translate(0px)";
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
</script>
|
|
|
|
</svg>
|