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

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

Issue 6174009: Tidy up <select>s in tabbed options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't anonymize Created 9 years, 11 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 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 <option value="20" i18n-content="fontSizeLabelLarge"></option> 73 <option value="20" i18n-content="fontSizeLabelLarge"></option>
74 <option value="24" i18n-content="fontSizeLabelVeryLarge"></option> 74 <option value="24" i18n-content="fontSizeLabelVeryLarge"></option>
75 </select> 75 </select>
76 </label> 76 </label>
77 <button id="fontSettingsCustomizeFontsButton" 77 <button id="fontSettingsCustomizeFontsButton"
78 i18n-content="fontSettingsCustomizeFontsButton"></button> 78 i18n-content="fontSettingsCustomizeFontsButton"></button>
79 </div> 79 </div>
80 <div> 80 <div>
81 <label> 81 <label>
82 <span i18n-content="defaultZoomLevelLabel"></span> 82 <span i18n-content="defaultZoomLevelLabel"></span>
83 <select id="defaultZoomLevel"> 83 <select id="defaultZoomLevel" pref="profile.default_zoom_level"
84 dataType="real" metric="Options_ChangeDefaultZoomLevel">
84 <option value="-3">57%</option> 85 <option value="-3">57%</option>
85 <option value="-2">69%</option> 86 <option value="-2">69%</option>
86 <option value="-1">83%</option> 87 <option value="-1">83%</option>
87 <option value="0">100%</option> 88 <option value="0">100%</option>
88 <option value="1">120%</option> 89 <option value="1">120%</option>
89 <option value="2">144%</option> 90 <option value="2">144%</option>
90 <option value="3">172%</option> 91 <option value="3">172%</option>
91 <option value="4">207%</option> 92 <option value="4">207%</option>
92 <option value="5">248%</option> 93 <option value="5">248%</option>
93 <option value="6">298%</option> 94 <option value="6">298%</option>
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 <if expr="pp_ifdef('remoting') and not pp_ifdef('chromeos')"> 205 <if expr="pp_ifdef('remoting') and not pp_ifdef('chromeos')">
205 <section id="remoting-section"> 206 <section id="remoting-section">
206 <h3 i18n-content="advancedSectionTitleRemoting"></h3> 207 <h3 i18n-content="advancedSectionTitleRemoting"></h3>
207 <div> 208 <div>
208 <button id="remotingSetupButton" 209 <button id="remotingSetupButton"
209 i18n-content="remotingSetupButton"></button> 210 i18n-content="remotingSetupButton"></button>
210 </div> 211 </div>
211 </section> 212 </section>
212 </if> 213 </if>
213 </div> 214 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698