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

Side by Side Diff: chrome/browser/resources/options/chromeos/internet_options.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="internetPage" hidden> 1 <div id="internetPage" class="page" hidden>
2 <h1 i18n-content="internetPage"></h1> 2 <h1 i18n-content="internetPage"></h1>
3 <div id="locked-network-banner"> 3 <div id="locked-network-banner">
4 <span id="locked-network-icon"></span> 4 <span id="locked-network-icon"></span>
5 <span id="access-locked-text" i18n-content="accessLockedMsg"></span> 5 <span id="access-locked-text" i18n-content="accessLockedMsg"></span>
6 </div> 6 </div>
7 <section id="wireless-buttons"> 7 <section id="wireless-buttons">
8 <h3 i18n-content="generalNetworkingTitle"></h3> 8 <h3 i18n-content="generalNetworkingTitle"></h3>
9 <div id="network-general-div"> 9 <div id="network-general-div">
10 <div id="networking-controls" class="section-group"> 10 <div id="networking-controls" class="section-group">
11 <button id="enable-wifi" hidden 11 <button id="enable-wifi" hidden
12 i18n-content="enableWifi"></button> 12 i18n-content="enableWifi"></button>
13 <button id="disable-wifi" hidden 13 <button id="disable-wifi" hidden
14 i18n-content="disableWifi"></button> 14 i18n-content="disableWifi"></button>
15 <button id="enable-cellular" hidden 15 <button id="enable-cellular" hidden
16 i18n-content="enableCellular"></button> 16 i18n-content="enableCellular"></button>
17 <button id="disable-cellular" hidden 17 <button id="disable-cellular" hidden
18 i18n-content="disableCellular"></button> 18 i18n-content="disableCellular"></button>
19 </div> 19 </div>
20 <div id="internet-owner-only-warning" hidden> 20 <div id="internet-owner-only-warning" hidden>
21 <span i18n-content="ownerOnly"></span> 21 <span i18n-content="ownerOnly"></span>
22 <span i18n-content="ownerUserId"></span> 22 <span i18n-content="ownerUserId"></span>
23 </div> 23 </div>
24 <div id="data-roaming" class="checkbox"> 24 <div id="data-roaming" class="checkbox">
25 <label> 25 <label>
26 <input id="enable-data-roaming" 26 <input id="enable-data-roaming" pref="cros.signed.data_roaming_enabled"
27 pref="cros.signed.data_roaming_enabled"
28 metric="Options_Internet_DataRoaming" type="checkbox"> 27 metric="Options_Internet_DataRoaming" type="checkbox">
29 <span i18n-content="enableDataRoaming"></span> 28 <span i18n-content="enableDataRoaming"></span>
30 </label> 29 </label>
31 </div> 30 </div>
32 </div> 31 </div>
33 </section> 32 </section>
34 <section id="wired-section"> 33 <section id="wired-section">
35 <h3 i18n-content="wired_title"></h3> 34 <h3 i18n-content="wired_title"></h3>
36 <div class="networks" id="wired-list"></div> 35 <div id="wired-list" class="networks"></div>
37 </section> 36 </section>
38 <section id="wireless-section"> 37 <section id="wireless-section">
39 <h3 i18n-content="wireless_title"></h3> 38 <h3 i18n-content="wireless_title"></h3>
40 <div class="networks" id="wireless-list"></div> 39 <div id="wireless-list" class="networks"></div>
41 </section> 40 </section>
42 <section id="remembered-section"> 41 <section id="remembered-section">
43 <h3 i18n-content="remembered_title"></h3> 42 <h3 i18n-content="remembered_title"></h3>
44 <div class="networks" id="remembered-list"></div> 43 <div id="remembered-list" class="networks"></div>
45 </section> 44 </section>
46 </div> 45 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698