summaryrefslogtreecommitdiffstats
path: root/dom/base/test/chrome/file_bug1139964.xul
blob: 251334301401b05bdc774878d1ee79024dc191d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
                 type="text/css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1139964
-->
<window title="Mozilla Bug 1139964"
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  onload="run()">
  <label value="Mozilla Bug 1139964"/>
  <!-- test code goes here -->
  <script type="application/javascript"><![CDATA[
  var Cc = Components.classes;
  var Ci = Components.interfaces;

  var ppm = Cc["@mozilla.org/parentprocessmessagemanager;1"]
              .getService(Ci.nsIMessageBroadcaster);

  function ok(cond, msg) {
    opener.wrappedJSObject.ok(cond, msg);
  }

  var msgName = "TEST:Global_has_Promise";

  function mmScriptForPromiseTest() {
    sendAsyncMessage("TEST:Global_has_Promise",
                     {
                       hasPromise: ("Promise" in this),
                       hasTextEncoder: ("TextEncoder" in this),
                       hasWindow: ("Window" in this),
                     });
  }

  function processListener(m) {
    ppm.removeMessageListener(msgName, processListener);
    ok(m.data.hasPromise, "ProcessGlobal should have Promise object in the global scope!");
    ok(m.data.hasTextEncoder, "ProcessGlobal should have TextEncoder object in the global scope!");
    ok(!m.data.hasWindow, "ProcessGlobal should not have Window object in the global scope!");

    messageManager.addMessageListener(msgName, tabListener)
    messageManager.loadFrameScript("data:,(" + mmScriptForPromiseTest.toString() + ")()", true);
  }

  function tabListener(m) {
    messageManager.removeMessageListener(msgName, tabListener);
    ok(m.data.hasPromise, "TabChildGlobal should have Promise object in the global scope!");
    ok(m.data.hasTextEncoder, "TabChildGlobal should have TextEncoder object in the global scope!");
    ok(!m.data.hasWindow, "TabChildGlobal should not have Window object in the global scope!");

    opener.setTimeout("done()", 0);
    window.close();
  }

  function run() {
    ppm.addMessageListener(msgName, processListener)
    ppm.loadProcessScript("data:,(" + mmScriptForPromiseTest.toString() + ")()", true);
  }

  ]]></script>
  <browser type="content" src="about:blank" id="ifr"/>
</window>