mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
26 lines
475 B
XML
26 lines
475 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||
|
onload="boom();">
|
||
|
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var g = document.getElementById("g");
|
||
|
var use = document.getElementById("use");
|
||
|
|
||
|
g.appendChild(use);
|
||
|
document.documentElement.appendChild(use);
|
||
|
document.documentElement.appendChild(g);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<g id="g" style="counter-reset: c;">
|
||
|
<rect width="1" height="1"/>
|
||
|
</g>
|
||
|
|
||
|
<use id="use" xlink:href="#g"/>
|
||
|
|
||
|
</svg>
|