summaryrefslogtreecommitdiffstats
path: root/editor/composer/test/test_bug1453190.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--editor/composer/test/test_bug1453190.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/editor/composer/test/test_bug1453190.html b/editor/composer/test/test_bug1453190.html
new file mode 100644
index 0000000000..cf6b0d888a
--- /dev/null
+++ b/editor/composer/test/test_bug1453190.html
@@ -0,0 +1,36 @@
+<!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>