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-remove-width.svg
<defs>
<svg id="d">
<rect height="50%" width="100%" fill="blue" />
</svg>
</defs>
<use id="u" xlink:href="#d" height="100%" width="11%" />
<script>
function boom()
{
document.getElementById("u").removeAttribute("width");
}
window.addEventListener("load", boom, false);
</script>
</svg>