From 3e639acfef2d9762aaf232be5b041da71150f79c Mon Sep 17 00:00:00 2001 From: janekptacijarabaci Date: Thu, 26 Apr 2018 12:52:13 +0200 Subject: [PATCH] [PALEMOON] Permisions Manager: Added a comment --- .../palemoon/components/preferences/aboutPermissions.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/palemoon/components/preferences/aboutPermissions.js b/application/palemoon/components/preferences/aboutPermissions.js index a28ddaa101..750295c2a5 100644 --- a/application/palemoon/components/preferences/aboutPermissions.js +++ b/application/palemoon/components/preferences/aboutPermissions.js @@ -274,6 +274,10 @@ Site.prototype = { * Removes all data from the browser corresponding to the site. */ forgetSite: function Site_forgetSite() { + // XXX This removes data for an entire domain, rather than just + // an origin. This may produce confusing results, as data will + // be cleared for the http:// as well as the https:// domain + // if you try to forget the https:// site. ForgetAboutSite.removeDataFromDomain(this.principal.URI.host) .catch(Cu.reportError); }