OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <title>Test removing the element referenced by a 'use'</title> | |
3 <svg> | |
4 <defs> | |
5 <circle id="c" cx="50" cy="50" r="25" fill="red"/> | |
6 </defs> | |
7 <circle cx="50" cy="50" r="22" fill="green"/> | |
8 <use xlink:href="#c"/> | |
9 <script>window.onload = function() { document.getElementById("c").remove(); }</script> | |
10 </svg> | |
11 | |
OLD | NEW |