diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-28 13:58:23 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-28 13:58:23 +0100 |
commit | c08b490c5c44f5f04049f408ad0848e9843f0702 (patch) | |
tree | 550c6a94bcd13d5eea1c049cc70df6271c9ef806 /application/palemoon/app | |
parent | c962e2051a1f3767a221254487bcfc6d53aa59a1 (diff) | |
download | UXP-c08b490c5c44f5f04049f408ad0848e9843f0702.tar UXP-c08b490c5c44f5f04049f408ad0848e9843f0702.tar.gz UXP-c08b490c5c44f5f04049f408ad0848e9843f0702.tar.lz UXP-c08b490c5c44f5f04049f408ad0848e9843f0702.tar.xz UXP-c08b490c5c44f5f04049f408ad0848e9843f0702.zip |
Move default-enable pref to application.
Diffstat (limited to 'application/palemoon/app')
-rw-r--r-- | application/palemoon/app/profile/palemoon.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/application/palemoon/app/profile/palemoon.js b/application/palemoon/app/profile/palemoon.js index 43f020f9a..3df5d7194 100644 --- a/application/palemoon/app/profile/palemoon.js +++ b/application/palemoon/app/profile/palemoon.js @@ -1160,6 +1160,14 @@ pref("toolkit.pageThumbs.minHeight", 180); pref("ui.key.menuAccessKeyFocuses", true); #endif +// When a user cancels this number of authentication dialogs coming from +// a single web page (eTLD+1) in a row, all following authentication dialogs +// will be blocked (automatically canceled) for that page. +// This counter is per-tab and per-domain to minimize false positives. +// The counter resets when the page is reloaded from the UI +// (content-reloads do NOT clear this to mitigate reloading tricks). +pref("prompts.authentication_dialog_abuse_limit", 3); + // ****************** s4e prefs ****************** pref("status4evar.addonbar.borderStyle", false); pref("status4evar.addonbar.closeButton", false); |