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

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

Issue 6057003: DOMUI Settings: UTH: Fix up the 'Web Content' section. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 <section> 56 <section>
57 <h3 i18n-content="advancedSectionTitleContent"></h3> 57 <h3 i18n-content="advancedSectionTitleContent"></h3>
58 <div> 58 <div>
59 <if expr="os == 'darwin'"> 59 <if expr="os == 'darwin'">
60 <label class="checkbox"> 60 <label class="checkbox">
61 <input id="tabsToLinksPref" pref="webkit.webprefs.tabs_to_links" 61 <input id="tabsToLinksPref" pref="webkit.webprefs.tabs_to_links"
62 metric="Options_TabsToLinks" type="checkbox"> 62 metric="Options_TabsToLinks" type="checkbox">
63 <span i18n-content="tabsToLinksPref"></span> 63 <span i18n-content="tabsToLinksPref"></span>
64 </label> 64 </label>
65 </if> 65 </if>
66 <div><button id="fontSettingsCustomizeFontsButton" 66 <div>
67 i18n-content="fontSettingsCustomizeFontsButton"></button></div> 67 <label style="display:inline;">
csilv 2010/12/22 02:35:27 We can probably remove the style attribute due to
kmadhusu 2010/12/22 19:15:02 Done.
68 <span i18n-content="defaultFontSizeLabel"></span>
69 <select id="defaultFontSize">
70 <option value="9" i18n-content="FontSizeLabelVerySmall"></option>
csilv 2010/12/22 02:35:27 lowercase font size attributes, see comment in .cc
kmadhusu 2010/12/22 19:15:02 Done.
71 <option value="12" i18n-content="FontSizeLabelSmall"></option>
72 <option value="16" i18n-content="FontSizeLabelMedium"></option>
73 <option value="20" i18n-content="FontSizeLabelLarge"></option>
74 <option value="24" i18n-content="FontSizeLabelVeryLarge"></option>
75 </select>
76 </label>
77 <button id="fontSettingsCustomizeFontsButton"
78 i18n-content="fontSettingsCustomizeFontsButton"></button>
79 </div>
68 <div> 80 <div>
69 <label style="display:inline;"> 81 <label style="display:inline;">
csilv 2010/12/22 02:35:27 Remove this style attribute also as per above.
kmadhusu 2010/12/22 19:15:02 Done.
70 <span i18n-content="defaultZoomLevelLabel"></span> 82 <span i18n-content="defaultZoomLevelLabel"></span>
71 <select id="defaultZoomLevel"> 83 <select id="defaultZoomLevel">
72 <option value="-3">57%</option> 84 <option value="-3">57%</option>
73 <option value="-2">69%</option> 85 <option value="-2">69%</option>
74 <option value="-1">83%</option> 86 <option value="-1">83%</option>
75 <option value="0">100%</option> 87 <option value="0">100%</option>
76 <option value="1">120%</option> 88 <option value="1">120%</option>
77 <option value="2">144%</option> 89 <option value="2">144%</option>
78 <option value="3">172%</option> 90 <option value="3">172%</option>
79 <option value="4">207%</option> 91 <option value="4">207%</option>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 <div> 195 <div>
184 <button id="cloudPrintProxySetupButton" 196 <button id="cloudPrintProxySetupButton"
185 i18n-content="cloudPrintProxyDisabledButton"></button> 197 i18n-content="cloudPrintProxyDisabledButton"></button>
186 <button id="cloudPrintProxyManageButton" 198 <button id="cloudPrintProxyManageButton"
187 i18n-content="cloudPrintProxyEnabledManageButton"></button> 199 i18n-content="cloudPrintProxyEnabledManageButton"></button>
188 </div> 200 </div>
189 </div> 201 </div>
190 </section> 202 </section>
191 </if> 203 </if>
192 </div> 204 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698