зеркало из https://github.com/mozilla/gecko-dev.git
37 строки
920 B
HTML
37 строки
920 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1453190
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 1453190</title>
|
|
<script 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=1453190">Mozilla Bug 1453190</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
let testWindow = window.open("file_bug1453190.html");
|
|
testWindow.addEventListener("load", () => {
|
|
SimpleTest.executeSoon(() => {
|
|
runTest(testWindow);
|
|
});
|
|
}, {once: true});
|
|
|
|
function runTest(win) {
|
|
ok(!win.closed, "test window is opened");
|
|
win.close();
|
|
ok(win.closed, "test window is closed");
|
|
SimpleTest.finish();
|
|
}
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|