mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 514308 - Fix shift+click on the RSS icon in the address bar. r=mano
This commit is contained in:
parent
bea18b662b
commit
d2a906feb3
@ -198,11 +198,15 @@ function openUILinkIn( url, where, allowThirdPartyFixup, postData, referrerUrl )
|
||||
createInstance(Ci.nsISupportsString);
|
||||
wuri.data = url;
|
||||
|
||||
var allowThirdPartyFixupSupports = Cc["@mozilla.org/supports-PRBool;1"].
|
||||
createInstance(Ci.nsISupportsPRBool);
|
||||
allowThirdPartyFixupSupports.data = allowThirdPartyFixup;
|
||||
|
||||
sa.AppendElement(wuri);
|
||||
sa.AppendElement(null);
|
||||
sa.AppendElement(referrerUrl);
|
||||
sa.AppendElement(postData);
|
||||
sa.AppendElement(allowThirdPartyFixup);
|
||||
sa.AppendElement(allowThirdPartyFixupSupports);
|
||||
|
||||
var ww = Cc["@mozilla.org/embedcomp/window-watcher;1"].
|
||||
getService(Ci.nsIWindowWatcher);
|
||||
|
Loading…
Reference in New Issue
Block a user