mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
721 B
XML
35 lines
721 B
XML
<svg xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
class="reftest-wait">
|
|
|
|
<html:style>
|
|
.gencon:after { content: counter(chicken); }
|
|
</html:style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var dc;
|
|
var defs;
|
|
|
|
function boom()
|
|
{
|
|
var define = document.getElementById("define");
|
|
define.setAttribute("class", "gencon");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
|
|
</script>
|
|
|
|
<defs id="defs">
|
|
<g id="define">
|
|
<rect x="0" y="0" width="75" height="75" fill="green"/>
|
|
</g>
|
|
</defs>
|
|
|
|
<use xlink:href="#define" x="20" y="20" id="use" />
|
|
|
|
</svg>
|