File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1139964
32
32
ppm.removeMessageListener(msgName, processListener);
33
33
ok(m.data.hasPromise, "ProcessGlobal should have Promise object in the global scope!");
34
34
ok(m.data.hasTextEncoder, "ProcessGlobal should have TextEncoder object in the global scope!");
35
- ok(! m.data.hasWindow, "ProcessGlobal should not have Window object in the global scope!");
35
+ ok(m.data.hasWindow, "ProcessGlobal should have Window object in the global scope!");
36
36
37
37
messageManager.addMessageListener(msgName, tabListener)
38
38
messageManager.loadFrameScript("data:,(" + mmScriptForPromiseTest.toString() + ")()", true);
@@ -42,7 +42,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1139964
42
42
messageManager.removeMessageListener(msgName, tabListener);
43
43
ok(m.data.hasPromise, "TabChildGlobal should have Promise object in the global scope!");
44
44
ok(m.data.hasTextEncoder, "TabChildGlobal should have TextEncoder object in the global scope!");
45
- ok(! m.data.hasWindow, "TabChildGlobal should not have Window object in the global scope!");
45
+ ok(m.data.hasWindow, "TabChildGlobal should have Window object in the global scope!");
46
46
47
47
opener.setTimeout("done()", 0);
48
48
window.close();
You can’t perform that action at this time.
0 commit comments