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

Unified Diff: chrome/browser/resources/options/startup_section.html

Issue 539383003: Fix some more for= usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge Created 6 years, 3 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/startup_section.html
diff --git a/chrome/browser/resources/options/startup_section.html b/chrome/browser/resources/options/startup_section.html
index d0f3f2bde6b37a9e81dfb88b8ec3bf6b5b3c1d1f..fd14dabd4a35d332ef2ce96b33e2e793ceb76cc1 100644
--- a/chrome/browser/resources/options/startup_section.html
+++ b/chrome/browser/resources/options/startup_section.html
@@ -7,30 +7,36 @@
<input type="radio" name="startup" value="5"
pref="session.restore_on_startup"
metric="Options_Startup_NewTab">
- <span i18n-content="startupShowNewTab"></span>
+ <span>
+ <span i18n-content="startupShowNewTab"></span>
+ <span class="controlled-setting-indicator"
+ pref="session.restore_on_startup" value="5"></span>
+ </span>
</label>
- <span class="controlled-setting-indicator"
- pref="session.restore_on_startup" value="5"></span>
</div>
<div class="radio controlled-setting-with-label">
<label>
<input id="startup-restore-session" type="radio" name="startup"
value="1" pref="session.restore_on_startup"
metric="Options_Startup_LastSession">
- <span i18n-content="startupRestoreLastSession"></span>
+ <span>
+ <span i18n-content="startupRestoreLastSession"></span>
+ <span class="controlled-setting-indicator"
+ pref="session.restore_on_startup" value="1"></span>
+ </span>
</label>
- <span class="controlled-setting-indicator"
- pref="session.restore_on_startup" value="1"></span>
</div>
<div class="radio controlled-setting-with-label">
<label>
<input id="startup-show-pages" type="radio" name="startup"
pref="session.restore_on_startup"
value="4" metric="Options_Startup_Custom">
- <span i18n-content="startupShowPages"></span>
+ <span>
+ <span i18n-content="startupShowPages"></span>
+ <span class="controlled-setting-indicator"
+ pref="session.restore_on_startup" value="4"></span>
+ </span>
</label>
- <span class="controlled-setting-indicator"
- pref="session.restore_on_startup" value="4"></span>
<button id="startup-set-pages" class="link-button"
i18n-content="startupSetPages">
</button>
« no previous file with comments | « chrome/browser/resources/options/reset_profile_settings_overlay.js ('k') | chrome/browser/resources/options/sync_section.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698