Backed out changeset 9b6ac0c2211d (bug 1363975) for eslint failures on a CLOSED TREE

This commit is contained in:
Carsten "Tomcat" Book 2017-05-31 17:02:12 +02:00
parent 05cf62c272
commit 056185123f
3 changed files with 3 additions and 21 deletions

View File

@ -64,13 +64,7 @@
this.invoke = function loadTabInBackground_invoke()
{
tabBrowser().loadOneTab(aURL, {
referrerURI: null,
charset: "",
postData: null,
inBackground: true,
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
});
tabBrowser().loadOneTab(aURL, null, "", null, true);
}
this.getID = function loadTabInBackground_getID()

View File

@ -56,13 +56,7 @@
{
this.invoke = function loadOneTab_invoke()
{
tabBrowser().loadOneTab(aURI, {
referrerURI: null,
charset: null,
postData: null,
inBackground: false,
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
});
tabBrowser().loadOneTab(aURI, null, null, null, false);
}
this.eventSeq = [

View File

@ -53,13 +53,7 @@
this.invoke = function addTabInvoker_invoke()
{
tabBrowser().loadOneTab(aURL, {
referrerURI: null,
charset: "",
postData: null,
inBackground: false,
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
});
tabBrowser().loadOneTab(aURL, null, "", null, false);
}
this.finalCheck = function addTabInvoker_finalCheck()