diff options
author | csilv@chromium.org <csilv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 19:38:44 +0000 |
---|---|---|
committer | csilv@chromium.org <csilv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 19:38:44 +0000 |
commit | 68f904163bb1ba4c26681f897e01f46589432e29 (patch) | |
tree | 4c43622dacc3533b3d1e7512901ccad5ad201737 | |
parent | 41869539b903260815feae1501a29cbc470c3d20 (diff) | |
download | chromium_src-68f904163bb1ba4c26681f897e01f46589432e29.zip chromium_src-68f904163bb1ba4c26681f897e01f46589432e29.tar.gz chromium_src-68f904163bb1ba4c26681f897e01f46589432e29.tar.bz2 |
web-ui settings: Eliminate three html parse warnings do to incorrect use of label tags.
BUG=none
TEST=Reload settings window, verify that no HTML parsing warnings are reported.
Review URL: http://codereview.chromium.org/6576022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75929 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/resources/options/certificate_backup_overlay.html | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/chrome/browser/resources/options/certificate_backup_overlay.html b/chrome/browser/resources/options/certificate_backup_overlay.html index 280c27a..b9a72ac 100644 --- a/chrome/browser/resources/options/certificate_backup_overlay.html +++ b/chrome/browser/resources/options/certificate_backup_overlay.html @@ -3,24 +3,24 @@ <div class="content-area"> <table> <tr> - <label id="certificateBackupPasswordLabel"> - <td> + <td> + <label for="certificateBackupPassword"> <span i18n-content="certificatePasswordLabel"></span> - </td> - <td> - <input type="password" id="certificateBackupPassword"> - </td> - </label> + </label> + </td> + <td> + <input type="password" id="certificateBackupPassword"> + </td> </tr> <tr> - <label id="certificateBackupPasswordLabel"> - <td> + <td> + <label for="certificateBackupPassword2"> <span i18n-content="certificateConfirmPasswordLabel"></span> - </td> - <td> - <input type="password" id="certificateBackupPassword2"> - </td> - </label> + </label> + </td> + <td> + <input type="password" id="certificateBackupPassword2"> + </td> </tr> </table> <p> |