Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: chrome/browser/resources/options/certificate_backup_overlay.html

Issue 580903007: remove a couple more <label> for= uses (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="certificateBackupOverlay" class="page" hidden> 1 <div id="certificateBackupOverlay" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="certificateExportPasswordDescription"></h1> 3 <h1 i18n-content="certificateExportPasswordDescription"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <table> 5 <table>
6 <tr> 6 <tr>
7 <td id="certificate-backup-password-label"
8 i18n-content="certificatePasswordLabel"></td>
7 <td> 9 <td>
8 <label for="certificateBackupPassword"> 10 <input id="certificateBackupPassword" type="password"
9 <span i18n-content="certificatePasswordLabel"></span> 11 aria-labelledby="certificate-backup-password-label">
10 </label>
11 </td>
12 <td>
13 <input id="certificateBackupPassword" type="password">
14 </td> 12 </td>
15 </tr> 13 </tr>
16 <tr> 14 <tr>
15 <td id="certificate-backup-password-2-label"
16 i18n-content="certificateConfirmPasswordLabel"></td>
17 <td> 17 <td>
18 <label for="certificateBackupPassword2"> 18 <input id="certificateBackupPassword2" type="password"
19 <span i18n-content="certificateConfirmPasswordLabel"></span> 19 aria-labelledby="certificate-backup-password-2-label">
20 </label>
21 </td>
22 <td>
23 <input id="certificateBackupPassword2" type="password">
24 </td> 20 </td>
25 </tr> 21 </tr>
26 </table> 22 </table>
27 <p> 23 <p>
28 <span i18n-content="certificateExportPasswordHelp"></span> 24 <span i18n-content="certificateExportPasswordHelp"></span>
29 </p> 25 </p>
30 </div> 26 </div>
31 <div class="action-area"> 27 <div class="action-area">
32 <div class="button-strip"> 28 <div class="button-strip">
33 <button id="certificateBackupCancelButton" type="reset" 29 <button id="certificateBackupCancelButton" type="reset"
34 i18n-content="cancel"></button> 30 i18n-content="cancel"></button>
35 <button id="certificateBackupOkButton" class="default-button" 31 <button id="certificateBackupOkButton" class="default-button"
36 type="submit" i18n-content="ok" disabled> 32 type="submit" i18n-content="ok" disabled>
37 </button> 33 </button>
38 </div> 34 </div>
39 </div> 35 </div>
40 </div> 36 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698