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

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

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

Powered by Google App Engine
This is Rietveld 408576698