зеркало из https://github.com/mozilla/gecko-dev.git
Bug 935973 - ThirdPartyCookieProbe errors r=yoric
This commit is contained in:
Родитель
2075d39d94
Коммит
266f944c44
|
@ -6,6 +6,7 @@
|
|||
|
||||
let Ci = Components.interfaces;
|
||||
let Cu = Components.utils;
|
||||
let Cr = Components.results;
|
||||
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
Cu.import("resource://gre/modules/Services.jsm");
|
||||
|
@ -88,7 +89,13 @@ this.ThirdPartyCookieProbe.prototype = {
|
|||
data.addRejected(firstParty);
|
||||
}
|
||||
} catch (ex) {
|
||||
// Errors should not remain silent
|
||||
if (ex instanceof Ci.nsIXPCException) {
|
||||
if (ex.result == Cr.NS_ERROR_HOST_IS_IP_ADDRESS ||
|
||||
ex.result == Cr.NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Other errors should not remain silent.
|
||||
Services.console.logStringMessage("ThirdPartyCookieProbe: Uncaught error " + ex + "\n" + ex.stack);
|
||||
}
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче