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

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

Issue 8528011: Page zoom improvements (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Minor cleanups 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
OLDNEW
1 <div id="advancedPage" class="page" hidden> 1 <div id="advancedPage" class="page" hidden>
2 <h1 i18n-content="advancedPage"></h1> 2 <h1 i18n-content="advancedPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <section> 4 <section>
5 <h3 i18n-content="advancedSectionTitlePrivacy"></h3> 5 <h3 i18n-content="advancedSectionTitlePrivacy"></h3>
6 <div> 6 <div>
7 <div class="section-group"> 7 <div class="section-group">
8 <button id="privacyContentSettingsButton" 8 <button id="privacyContentSettingsButton"
9 i18n-content="privacyContentSettingsButton"></button> 9 i18n-content="privacyContentSettingsButton"></button>
10 <button id="privacyClearDataButton" 10 <button id="privacyClearDataButton"
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 <option value="20" i18n-content="fontSizeLabelLarge"></option> 84 <option value="20" i18n-content="fontSizeLabelLarge"></option>
85 <option value="24" i18n-content="fontSizeLabelVeryLarge"> 85 <option value="24" i18n-content="fontSizeLabelVeryLarge">
86 </option> 86 </option>
87 </select> 87 </select>
88 </label> 88 </label>
89 <button id="fontSettingsCustomizeFontsButton" 89 <button id="fontSettingsCustomizeFontsButton"
90 i18n-content="fontSettingsCustomizeFontsButton"></button> 90 i18n-content="fontSettingsCustomizeFontsButton"></button>
91 </div> 91 </div>
92 <div class="section-group"> 92 <div class="section-group">
93 <label class="web-content-select-label"> 93 <label class="web-content-select-label">
94 <span i18n-content="defaultZoomLevelLabel"></span> 94 <span i18n-content="defaultZoomFactorLabel"></span>
95 <select id="defaultZoomLevel" pref="profile.default_zoom_level" 95 <select id="defaultZoomFactor" dataType="double"></select>
James Hawkins 2011/11/15 18:35:51 s/defaultZoomFactor/default-zoom-factor/ To make
csilv 2011/11/19 00:17:45 I decided not to do this for consistency, but perh
96 data-type="double" metric="Options_ChangeDefaultZoomLevel">
97 <option value="-3">57%</option>
98 <option value="-2">69%</option>
99 <option value="-1">83%</option>
100 <option value="0">100%</option>
101 <option value="1">120%</option>
102 <option value="2">144%</option>
103 <option value="3">172%</option>
104 <option value="4">207%</option>
105 <option value="5">248%</option>
106 <option value="6">298%</option>
107 </select>
108 </label> 96 </label>
109 </div> 97 </div>
110 <if expr="not pp_ifdef('chromeos') or os == 'win32'"> 98 <if expr="not pp_ifdef('chromeos') or os == 'win32'">
111 <div class="section-group"> 99 <div class="section-group">
112 </if> 100 </if>
113 <if expr="not pp_ifdef('chromeos')"> 101 <if expr="not pp_ifdef('chromeos')">
114 <button id="language-button" 102 <button id="language-button"
115 i18n-content="languageAndSpellCheckSettingsButton"></button> 103 i18n-content="languageAndSpellCheckSettingsButton"></button>
116 </if> 104 </if>
117 <if expr="not pp_ifdef('chromeos') or os == 'win32'"> 105 <if expr="not pp_ifdef('chromeos') or os == 'win32'">
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 <div class="checkbox"> 223 <div class="checkbox">
236 <label> 224 <label>
237 <input id="backgroundModeCheckbox" type="checkbox"> 225 <input id="backgroundModeCheckbox" type="checkbox">
238 <span i18n-content="backgroundModeCheckbox"></span> 226 <span i18n-content="backgroundModeCheckbox"></span>
239 </label> 227 </label>
240 </div> 228 </div>
241 </section> 229 </section>
242 </if> 230 </if>
243 </div> 231 </div>
244 </div> 232 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698