mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
58 lines
1.3 KiB
HTML
58 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=291653
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 291653</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=291653">Mozilla Bug 291653</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
|
|
if (!navigator.platform.startsWith("Win")) {
|
|
SimpleTest.expectAssertions(1);
|
|
}
|
|
|
|
/** Test for Bug 291653 **/
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var secondListenerDidRun = false;
|
|
|
|
var w = window.open("file_bug291653.html", "foo", "width=300,height=300");
|
|
|
|
function closeTest() {
|
|
w.setTimeout("close()", 0);
|
|
setTimeout("finish()", 500);
|
|
}
|
|
|
|
function finish() {
|
|
ok(!secondListenerDidRun, "Shouldn't have run second listener!");
|
|
|
|
// Garbage collecting the windows created in this test can cause
|
|
// assertions, so GC now to blame those assertions to this test.
|
|
// ("mArguments wasn't cleaned up properly!" in ~nsGlobalWindow,
|
|
// bug 600703)
|
|
SpecialPowers.gc();
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
function end() {
|
|
setTimeout("closeTest()", 500);
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|