Bug 1221206 - Turn on insecure password warning for dev edition. r=MattN

This commit is contained in:
Tanvi Vyas 2016-01-20 16:27:28 -08:00
parent 1060a6ac5a
commit 96f9bca120

View File

@ -1394,8 +1394,9 @@ pref("dom.identity.enabled", false);
// Block insecure active content on https pages
pref("security.mixed_content.block_active_content", true);
// Show degraded UI for http pages with password fields
#ifdef NIGHTLY_BUILD
// Show degraded UI for http pages with password fields.
// Only for Nightly and Dev Edition for not, not for beta or release.
#ifndef RELEASE_BUILD
pref("security.insecure_password.ui.enabled", true);
#else
pref("security.insecure_password.ui.enabled", false);