自動入力機能を実装するために、ログイン ページを持つ gwtアプリケーション があります。Firefox のパスワード設定を確認したところ、自分のユーザー名/パスワードが正しく Firefox に保存されていることがわかりました。パスワード フィールドが自動入力されないのはなぜですか?
以下は、私のログインフォームの html コードです。
<div id="loginDiv" style="display:none">
<form method="post" action="login" id="loginForm">
<table id="loginTable" valign="center">
<tr>
<td id="loginLabel">Username:</td>
<td><input id="loginUsername" name="username" AUTOCOMPLETE="on"></td>
</tr>
<tr>
<td id="loginLabel">Password:</td>
<td><input id="loginPassword" name="passwd" type="password" AUTOCOMPLETE="on"></td>
</tr>
<tr>
<td><button id="loginSubmit" type="submit">Login</button></td>
<td><input id="loginRememberMe" name="rm" type="checkbox">Remember Me</checkbox></td>
</tr>
</table></form>
</div>