Mypal/layout/svg/crashtests/338312-1.xhtml

29 lines
436 B
HTML
Raw Normal View History

2019-03-11 03:26:37 -07:00
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
document.getElementById("foo").appendChild(document.getElementById("bar"));
}
window.addEventListener("load", boom, false);
</script>
</head>
<body>
<div id="foo"></div>
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1"/>
</defs>
<rect id="bar" style="fill:url(#grad1);" />
</svg>
</body>
</html>