mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
78584a19aa
Switch browser type to content-primary so the frame loader triggers the right behavior for adding a content shell. Also fixes Bug 746217 - Cannot open windows even from the same domain
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
/* 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 = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const Cu = Components.utils;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
// Initialize DOMApplicationRegistry so it can receive and respond to messages.
|
|
// We catch an exception here on the off chance the registry throws one, as we
|
|
// don't need it for most apps, and exceptions it throws shouldn't prevent apps
|
|
// from loading.
|
|
try {
|
|
Cu.import("resource://gre/modules/Webapps.jsm");
|
|
} catch(ex) {}
|
|
|
|
function CommandLineHandler() {}
|
|
|
|
CommandLineHandler.prototype = {
|
|
classID: Components.ID("{6d69c782-40a3-469b-8bfd-3ee366105a4a}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsICommandLineHandler]),
|
|
|
|
handle: function handle(cmdLine) {
|
|
// Open the window with arguments to identify it as the main window
|
|
Services.ww.openWindow(null,
|
|
"chrome://webapprt/content/webapp.xul",
|
|
"_blank",
|
|
"chrome,dialog=no,all,resizable",
|
|
[]);
|
|
},
|
|
|
|
helpInfo : "",
|
|
};
|
|
|
|
let components = [CommandLineHandler];
|
|
let NSGetFactory = XPCOMUtils.generateNSGetFactory(components);
|