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

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

Issue 6260019: DOMUI: A few fixes post-dialog refactoring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="certificateBackupOverlay"> 1 <div class="page hidden" id="certificateBackupOverlay">
2 <p> 2 <h1 i18n-content="certificateExportPasswordDescription"></h1>
3 <span i18n-content="certificateExportPasswordDescription"></span> 3 <div class="content-area">
4 </p>
5
6 <p>
7 <table> 4 <table>
8 <tr> 5 <tr>
9 <label id="certificateBackupPasswordLabel"> 6 <label id="certificateBackupPasswordLabel">
10 <td> 7 <td>
11 <span i18n-content="certificatePasswordLabel"></span> 8 <span i18n-content="certificatePasswordLabel"></span>
12 </td> 9 </td>
13 <td> 10 <td>
14 <input type="password" id="certificateBackupPassword"> 11 <input type="password" id="certificateBackupPassword">
15 </td> 12 </td>
16 </label> 13 </label>
17 </tr> 14 </tr>
18 <tr> 15 <tr>
19 <label id="certificateBackupPasswordLabel"> 16 <label id="certificateBackupPasswordLabel">
20 <td> 17 <td>
21 <span i18n-content="certificateConfirmPasswordLabel"></span> 18 <span i18n-content="certificateConfirmPasswordLabel"></span>
22 </td> 19 </td>
23 <td> 20 <td>
24 <input type="password" id="certificateBackupPassword2"> 21 <input type="password" id="certificateBackupPassword2">
25 </td> 22 </td>
26 </label> 23 </label>
27 </tr> 24 </tr>
28 </table> 25 </table>
29 </p> 26 <p>
30 27 <span i18n-content="certificateExportPasswordHelp"></span>
31 <p> 28 </p>
32 <span i18n-content="certificateExportPasswordHelp"></span> 29 </div>
33 </p> 30 <div class="action-area">
34 31 <div class="button-strip">
35 <div class="action-area button-strip"> 32 <button type="reset" id="certificateBackupCancelButton"
36 <button type="reset" id="certificateBackupCancelButton" 33 i18n-content="cancel"></button>
37 i18n-content="cancel"></button> 34 <button type="submit" id="certificateBackupOkButton" i18n-content="ok"
38 <button type="submit" id="certificateBackupOkButton" 35 disabled></button>
39 i18n-content="ok" disabled></button> 36 </div>
40 </div> 37 </div>
41 </div> 38 </div>
42
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698