summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-26 12:52:13 +0200
committerjanekptacijarabaci <janekptacijarabaci@seznam.cz>2018-04-26 12:52:13 +0200
commit7ca378e8c09ff74c486a787d6ae6451b2ab8ed54 (patch)
treedfaabe4ee5f279c300fdeae4f0fd810e3d4c9b5f /application
parenta8b1780786d308e5eb520a9182879f9f6558ffaf (diff)
downloadUXP-7ca378e8c09ff74c486a787d6ae6451b2ab8ed54.tar
UXP-7ca378e8c09ff74c486a787d6ae6451b2ab8ed54.tar.gz
UXP-7ca378e8c09ff74c486a787d6ae6451b2ab8ed54.tar.lz
UXP-7ca378e8c09ff74c486a787d6ae6451b2ab8ed54.tar.xz
UXP-7ca378e8c09ff74c486a787d6ae6451b2ab8ed54.zip
[PALEMOON] Permisions Manager: Added a comment
Diffstat (limited to 'application')
-rw-r--r--application/palemoon/components/preferences/aboutPermissions.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/palemoon/components/preferences/aboutPermissions.js b/application/palemoon/components/preferences/aboutPermissions.js
index a28ddaa10..750295c2a 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);
}