Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/dynamic-use-02.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
style="background: lime;">
<defs>
<rect width="100%" height="100%" id="r"/>
</defs>
<use id="u" xlink:href="#r" fill="red"/>
<script type="text/javascript">
var u = document.getElementById("u");
u.getBoundingClientRect();
u.removeAttributeNS("http://www.w3.org/1999/xlink", "href");
</script>
</svg>