396618-1.html (251B)
1 <html> 2 <head> 3 <script> 4 function boom() 5 { 6 var svgText = document.createElementNS("http://www.w3.org/2000/svg", "text"); 7 svgText.setAttribute("dx", "foo"); 8 svgText.removeAttribute("dx"); 9 } 10 </script> 11 </head> 12 <body onload="boom();"> 13 </body> 14 </html>