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

Side by Side Diff: chrome/browser/resources/options/certificate_edit_ca_trust_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="certificateEditCaTrustOverlay" hidden> 1 <div id="certificateEditCaTrustOverlay" class="page" hidden>
2 <div class="content-area"> 2 <div class="content-area">
3 <p> 3 <p>
4 <span id="certificateEditCaTrustDescription"></span> 4 <span id="certificateEditCaTrustDescription"></span>
5 </p> 5 </p>
6 <p> 6 <p>
7 <span i18n-content="certificateEditTrustLabel"></span> 7 <span i18n-content="certificateEditTrustLabel"></span>
8 <br> 8 <br>
9 <label id="certificateCaTrustSSLLabel"> 9 <label id="certificateCaTrustSSLLabel">
10 <input type="checkbox" id="certificateCaTrustSSLCheckbox"> 10 <input id="certificateCaTrustSSLCheckbox" type="checkbox">
11 <span i18n-content="certificateCaTrustSSLLabel"></span> 11 <span i18n-content="certificateCaTrustSSLLabel"></span>
12 </label> 12 </label>
13 <br> 13 <br>
14 <label id="certificateCaTrustEmailLabel"> 14 <label id="certificateCaTrustEmailLabel">
15 <input type="checkbox" id="certificateCaTrustEmailCheckbox"> 15 <input id="certificateCaTrustEmailCheckbox" type="checkbox">
16 <span i18n-content="certificateCaTrustEmailLabel"></span> 16 <span i18n-content="certificateCaTrustEmailLabel"></span>
17 </label> 17 </label>
18 <br> 18 <br>
19 <label id="certificateCaTrustObjSignLabel"> 19 <label id="certificateCaTrustObjSignLabel">
20 <input type="checkbox" id="certificateCaTrustObjSignCheckbox"> 20 <input id="certificateCaTrustObjSignCheckbox" type="checkbox">
21 <span i18n-content="certificateCaTrustObjSignLabel"></span> 21 <span i18n-content="certificateCaTrustObjSignLabel"></span>
22 </label> 22 </label>
23 </p> 23 </p>
24 </div> 24 </div>
25 <div class="action-area"> 25 <div class="action-area">
26 <div class="button-strip"> 26 <div class="button-strip">
27 <button type="reset" id="certificateEditCaTrustCancelButton" 27 <button id="certificateEditCaTrustCancelButton" type="reset"
28 i18n-content="cancel"></button> 28 i18n-content="cancel"></button>
29 <button type="submit" id="certificateEditCaTrustOkButton" 29 <button id="certificateEditCaTrustOkButton" type="submit"
30 i18n-content="ok"></button> 30 i18n-content="ok"></button>
31 </div> 31 </div>
32 </div> 32 </div>
33 </div> 33 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698