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

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

Issue 5930003: DOMUI Settings: UTH: Fix the wrapping of the privacy explanation text. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: "Made code changes as per comments." Created 10 years 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 hidden" id="advancedPage"> 1 <div class="page hidden" id="advancedPage">
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <section> 3 <section>
4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 4 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
5 <div> 5 <div>
6 <div> 6 <div>
7 <button id="privacyContentSettingsButton" 7 <button id="privacyContentSettingsButton"
8 i18n-content="privacyContentSettingsButton"></button> 8 i18n-content="privacyContentSettingsButton"></button>
9 <button id="privacyClearDataButton" 9 <button id="privacyClearDataButton"
10 i18n-content="privacyClearDataButton"></button> 10 i18n-content="privacyClearDataButton"></button>
11 </div> 11 </div>
12 <div i18n-content="disableServices" class="disable-services-div"></div> 12 <div i18n-content="improveBrowsingExperience"
13 <div><a target="_blank" i18n-content="learnMore" 13 class="disable-services">
James Hawkins 2010/12/16 21:26:58 This can fit on the previous line in 80 cols.
kmadhusu 2010/12/16 22:08:58 Done.
14 i18n-values="href:privacyLearnMoreURL"></a></div> 14 </div>
15 <div>
16 <span i18n-content="disableWebServices" class="disable-services">
17 </span>
18 <a target="_blank" i18n-content="learnMore"
19 i18n-values="href:privacyLearnMoreURL"></a>
20 </div>
15 <label class="checkbox"> 21 <label class="checkbox">
16 <input id="alternateErrorPagesEnabled" pref="alternate_error_pages.enabl ed" 22 <input id="alternateErrorPagesEnabled" pref="alternate_error_pages.enabl ed"
17 metric="Options_LinkDoctorCheckbox" type="checkbox"> 23 metric="Options_LinkDoctorCheckbox" type="checkbox">
18 <span i18n-content="linkDoctorPref"></span> 24 <span i18n-content="linkDoctorPref"></span>
19 </label> 25 </label>
20 <label class="checkbox"> 26 <label class="checkbox">
21 <input id="searchSuggestEnabled" pref="search.suggest_enabled" 27 <input id="searchSuggestEnabled" pref="search.suggest_enabled"
22 metric="Options_UseSuggestCheckbox" type="checkbox"> 28 metric="Options_UseSuggestCheckbox" type="checkbox">
23 <span i18n-content="suggestPref"></span> 29 <span i18n-content="suggestPref"></span>
24 </label> 30 </label>
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 <button id="cloudPrintProxyManageButton" 185 <button id="cloudPrintProxyManageButton"
180 i18n-content="cloudPrintProxyEnabledManageButton"></button> 186 i18n-content="cloudPrintProxyEnabledManageButton"></button>
181 </div> 187 </div>
182 </div> 188 </div>
183 </section> 189 </section>
184 </if> 190 </if>
185 <div class="button-strip"> 191 <div class="button-strip">
186 <button id="optionsReset" i18n-content="optionsReset"></button> 192 <button id="optionsReset" i18n-content="optionsReset"></button>
187 </div> 193 </div>
188 </div> 194 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698