gecko/dom/tests/mochitest/notification/test_leak_windowClose.html

34 lines
765 B
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=605309
-->
<head>
<title>Test for leak when window closes</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script>
if (is_feature_enabled() == false) {
SimpleTest.finish();
}
else
{
function boom()
{
document.documentElement.focus();
var x = navigator.mozNotification;
document.documentElement.addEventListener('', function(){x}, false);
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
window.addEventListener("load", boom, false);
}
</script>
</head>
<body>
<p> I like to write tests </p>
</body>
</html>