wallpaper for bug 390451 - Remembered passwords lost when changing Master Password. r=vlad, a=damons.

This commit is contained in:
dolske@mozilla.com 2007-08-01 16:26:35 -07:00
parent 22d117a70f
commit 88ab8a8d73
3 changed files with 5 additions and 5 deletions

View File

@ -143,11 +143,11 @@
preference="pref.privacy.disable_button.view_passwords_exceptions"/>
</hbox>
<hbox id="masterPasswordBox">
<checkbox id="useMasterPassword" flex="1"
<checkbox id="useMasterPassword" flex="1" disabled="true"
oncommand="gSecurityPane.updateMasterPasswordButton();"
label="&useMasterPassword.label;"
accesskey="&useMasterPassword.accesskey;"/>
<button id="changeMasterPassword"
<button id="changeMasterPassword" disabled="true"
label="&changeMasterPassword.label;"
accesskey="&changeMasterPassword.accesskey;"
oncommand="gSecurityPane.changeMasterPassword();"/>

View File

@ -80,12 +80,12 @@
</row>
<row>
<label control="pw1" value="&setPassword.newPassword.label;"/>
<textbox id="pw1" type="password"
<textbox id="pw1" type="password" disabled="true"
oninput="setPasswordStrength(); checkPasswords();"/>
</row>
<row>
<label control="pw2" value="&setPassword.reenterPassword.label;"/>
<textbox id="pw2" type="password" oninput="checkPasswords();"/>
<textbox id="pw2" type="password" disabled="true" oninput="checkPasswords();"/>
</row>
</rows>
</grid>

View File

@ -34,7 +34,7 @@
<hbox align="center">
<label control="password" value="&setPassword.oldPassword.label;"/>
<textbox id="password" type="password"
<textbox id="password" type="password" disabled="true"
oninput="gRemovePasswordDialog.validateInput();"
xhtml2:role="textfield" aaa:describedby="warnings"/>
</hbox>