tenfourfox/dom/svg/crashtests/466576-1.xhtml
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
376 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function boom()
{
try {
document.getElementById("y").gradientTransform.baseVal.appendItem(function(){});
} catch(e) { }
document.documentElement.innerHTML;
}
</script>
</head>
<body onload="boom();">
<linearGradient id="y" xmlns="http://www.w3.org/2000/svg" />
</body>
</html>