summaryrefslogtreecommitdiffstats
path: root/components/preferences
diff options
context:
space:
mode:
Diffstat (limited to 'components/preferences')
-rw-r--r--components/preferences/security.js12
-rw-r--r--components/preferences/security.xul5
2 files changed, 1 insertions, 16 deletions
diff --git a/components/preferences/security.js b/components/preferences/security.js
index 9d5f302..a0f283d 100644
--- a/components/preferences/security.js
+++ b/components/preferences/security.js
@@ -18,7 +18,6 @@ var gSecurityPane = {
{
this._pane = document.getElementById("paneSecurity");
this._initMasterPasswordUI();
- this._initHPKPUI();
},
// ADD-ONS
@@ -234,17 +233,6 @@ var gSecurityPane = {
"chrome://passwordmgr/content/passwordManager.xul",
"", null);
},
-
- _initHPKPUI: function() {
- let checkbox = document.getElementById("enableHPKP");
- let HPKPpref = document.getElementById("security.cert_pinning.enforcement_level");
-
- if (HPKPpref.value == 0) {
- checkbox.checked = false;
- } else {
- checkbox.checked = true;
- }
- },
/**
* Updates the HPKP enforcement level to the proper value depending on checkbox
diff --git a/components/preferences/security.xul b/components/preferences/security.xul
index bc16252..bae6cca 100644
--- a/components/preferences/security.xul
+++ b/components/preferences/security.xul
@@ -46,9 +46,6 @@
<preference id="network.stricttransportsecurity.enabled"
name="network.stricttransportsecurity.enabled"
type="bool"/>
- <preference id="security.cert_pinning.enforcement_level"
- name="security.cert_pinning.enforcement_level"
- type="int"/>
<!-- Opportunistic Encryption -->
@@ -150,7 +147,7 @@
<checkbox id="enableHPKP"
label="&enableHPKP.label;"
accesskey="&enableHPKP.accesskey;"
- oncommand="gSecurityPane.updateHPKPPref();"/>
+ preference="security.cert_pinning.hpkp.enabled"/>
</vbox>
</groupbox>