aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.5/python-lib/cuddlefish/tests/addons/simplest-test/main.js
blob: 980ea8872e3a415c0d06c90ac66cf6bac240e1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

const { Cc, Ci } = require("chrome");

exports.main = function(options, callbacks) {
  // Close Firefox window. Firefox should quit.
  require("api-utils/window-utils").activeBrowserWindow.close();

  // But not on Mac where it stay alive! We have to request application quit.
  if (require("api-utils/runtime").OS == "Darwin") {
    let appStartup = Cc['@mozilla.org/toolkit/app-startup;1'].
                     getService(Ci.nsIAppStartup);
    appStartup.quit(appStartup.eAttemptQuit);
  }
}