1250725.html (386B)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> 2 3 <script> 4 function boom() 5 { 6 document.getElementById("u").setAttribute("width", "30"); 7 document.getElementById("p").remove(); 8 } 9 window.addEventListener("load", boom); 10 </script> 11 12 <symbol id="p" viewBox="0 0 100 20"/> 13 14 <use id="u" xlink:href="#p"/> 15 16 </svg>