tenfourfox/dom/html/crashtests/1230110.html

20 lines
395 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>