mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ee6c15fa75
--HG-- rename : docshell/test/test_bug344861.html => docshell/test/navigation/test_bug344861.html
35 lines
900 B
HTML
35 lines
900 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>
|
|
<script type="text/javascript" src="notification_common.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
|
|
<script>
|
|
if (is_feature_enabled()) {
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function boom()
|
|
{
|
|
document.documentElement.focus();
|
|
var x = navigator.mozNotification;
|
|
document.documentElement.addEventListener('', function(){x}, false);
|
|
ok(true, "load callback called");
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
} else {
|
|
ok(true, "Desktop notifications not enabled.");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p> I like to write tests </p>
|
|
</body>
|
|
</html>
|