Source code
Revision control
Copy as Markdown
Other Tools
<?xml version="1.0"?>
                 type="text/css"?>
<!--
-->
  onload="run()">
  <!-- test code goes here -->
  <script type="application/javascript"><![CDATA[
  /* global messageManager, sendAsyncMessage */
  var ppm = Cc["@mozilla.org/parentprocessmessagemanager;1"].getService();
  function ok(cond, msg) {
    window.arguments[0].ok(cond, msg);
  }
  var msgName = "TEST:Global_has_Promise";
  function mmScriptForPromiseTest() {
    /* eslint-env mozilla/process-script */
    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 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, "BrowserChildGlobal should have Promise object in the global scope!");
    ok(m.data.hasTextEncoder, "BrowserChildGlobal should have TextEncoder object in the global scope!");
    ok(m.data.hasWindow, "BrowserChildGlobal should have Window object in the global scope!");
    window.arguments[0].setTimeout(function() { this.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>