1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(boom, 100);"> <script> function boom() { var gradient = document.getElementById("gradient"); gradient.spreadMethod.baseVal = undefined; uneval({p: gradient.attributes}); } </script> <linearGradient id="gradient" /> </svg>