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

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

Issue 8400044: Associate the instant label text with a specific checkbox. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="browserPage" class="page" hidden> 1 <div id="browserPage" class="page" hidden>
2 <h1 i18n-content="browserPage"></h1> 2 <h1 i18n-content="browserPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section id="startupSection"> 4 <section id="startupSection">
5 <h3 i18n-content="startupGroupName"></h3> 5 <h3 i18n-content="startupGroupName"></h3>
6 <div> 6 <div>
7 <div class="radio"> 7 <div class="radio">
8 <label> 8 <label>
9 <input type="radio" name="startup" value="0" 9 <input type="radio" name="startup" value="0"
10 pref="session.restore_on_startup" 10 pref="session.restore_on_startup"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 </section> 90 </section>
91 <section> 91 <section>
92 <h3 i18n-content="defaultSearchGroupName"></h3> 92 <h3 i18n-content="defaultSearchGroupName"></h3>
93 <div id="defaultSearchEngineGroup"> 93 <div id="defaultSearchEngineGroup">
94 <div> 94 <div>
95 <select id="defaultSearchEngine" class="weakrtl"></select> 95 <select id="defaultSearchEngine" class="weakrtl"></select>
96 <button id="defaultSearchManageEnginesButton" 96 <button id="defaultSearchManageEnginesButton"
97 i18n-content="defaultSearchManageEngines"></button> 97 i18n-content="defaultSearchManageEngines"></button>
98 </div> 98 </div>
99 <div id="instantOption" class="checkbox"> 99 <div id="instantOption" class="checkbox">
100 <label> 100 <label id="instantLabel">
101 <!-- TODO(estade): metric? --> 101 <!-- TODO(estade): metric? -->
102 <input id="instantFieldTrialCheckbox" type="checkbox" 102 <input id="instantFieldTrialCheckbox" type="checkbox"
103 checked="checked" hidden> 103 checked="checked" hidden>
104 <input id="instantEnabledCheckbox" type="checkbox" 104 <input id="instantEnabledCheckbox" type="checkbox"
105 pref="instant.enabled"> 105 pref="instant.enabled">
106 <span i18n-content="instantName"></span> 106 <span i18n-content="instantName"></span>
107 </label> 107 </label>
108 </div> 108 </div>
109 <div class="suboption informational-text"> 109 <div class="suboption informational-text">
110 <span i18n-content="instantWarningText"></span> 110 <span i18n-content="instantWarningText"></span>
111 <a target="_blank" i18n-values="href:instantLearnMoreLink" 111 <a target="_blank" i18n-values="href:instantLearnMoreLink"
112 i18n-content="learnMore"></a> 112 i18n-content="learnMore"></a>
113 </div> 113 </div>
114 </div> 114 </div>
115 </section> 115 </section>
116 <if expr="not pp_ifdef('chromeos')"> 116 <if expr="not pp_ifdef('chromeos')">
117 <section> 117 <section>
118 <h3 i18n-content="defaultBrowserGroupName"></h3> 118 <h3 i18n-content="defaultBrowserGroupName"></h3>
119 <div> 119 <div>
120 <button id="defaultBrowserUseAsDefaultButton" 120 <button id="defaultBrowserUseAsDefaultButton"
121 i18n-content="defaultBrowserUseAsDefault"></button> 121 i18n-content="defaultBrowserUseAsDefault"></button>
122 <div id="defaultBrowserState" 122 <div id="defaultBrowserState"
123 i18n-content="defaultBrowserUnknown"></div> 123 i18n-content="defaultBrowserUnknown"></div>
124 </div> 124 </div>
125 </section> 125 </section>
126 </if> 126 </if>
127 </div> 127 </div>
128 </div> 128 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698