Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/svg/crashtests/crashtests.list
<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>