gecko-dev/dom/html/crashtests/1230110.html
Andrew McCreight 5e1c30c848 Bug 1230110 - HTMLImageElement should call its superclass's DestroyContent(). r=smaug
--HG--
extra : commitid : L6Z2VdVTfXK
extra : rebase_source : fad68a186e8124cab5beffa34e9db960fe5d2d38
2015-12-03 14:03:12 -08:00

20 lines
395 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
// This test case should not leak.
function leak()
{
var img = document.createElement("img");
var iframe = document.createElement("iframe");
img.appendChild(iframe);
document.body.appendChild(img);
document.addEventListener('Foo', function(){}, false);
}
</script>
</head>
<body onload="leak();"></body>
</html>