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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/chromeos/internet_options.html
diff --git a/chrome/browser/resources/options/chromeos/internet_options.html b/chrome/browser/resources/options/chromeos/internet_options.html
index 76546774d99ac10ad661d6d2d450ddbb81265051..408965ca73e3b08f9a03f45957db15e997076251 100644
--- a/chrome/browser/resources/options/chromeos/internet_options.html
+++ b/chrome/browser/resources/options/chromeos/internet_options.html
@@ -1,4 +1,4 @@
-<div class="page" id="internetPage" hidden>
+<div id="internetPage" class="page" hidden>
<h1 i18n-content="internetPage"></h1>
<div id="locked-network-banner">
<span id="locked-network-icon"></span>
@@ -23,8 +23,7 @@
</div>
<div id="data-roaming" class="checkbox">
<label>
- <input id="enable-data-roaming"
- pref="cros.signed.data_roaming_enabled"
+ <input id="enable-data-roaming" pref="cros.signed.data_roaming_enabled"
metric="Options_Internet_DataRoaming" type="checkbox">
<span i18n-content="enableDataRoaming"></span>
</label>
@@ -33,14 +32,14 @@
</section>
<section id="wired-section">
<h3 i18n-content="wired_title"></h3>
- <div class="networks" id="wired-list"></div>
+ <div id="wired-list" class="networks"></div>
</section>
<section id="wireless-section">
<h3 i18n-content="wireless_title"></h3>
- <div class="networks" id="wireless-list"></div>
+ <div id="wireless-list" class="networks"></div>
</section>
<section id="remembered-section">
<h3 i18n-content="remembered_title"></h3>
- <div class="networks" id="remembered-list"></div>
+ <div id="remembered-list" class="networks"></div>
</section>
</div>

Powered by Google App Engine
This is Rietveld 408576698