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

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: One last(?) tweak. 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 <option value="20" i18n-content="fontSizeLabelLarge"></option> 94 <option value="20" i18n-content="fontSizeLabelLarge"></option>
95 <option value="24" i18n-content="fontSizeLabelVeryLarge"> 95 <option value="24" i18n-content="fontSizeLabelVeryLarge">
96 </option> 96 </option>
97 </select> 97 </select>
98 </label> 98 </label>
99 <button id="fontSettingsCustomizeFontsButton" 99 <button id="fontSettingsCustomizeFontsButton"
100 i18n-content="fontSettingsCustomizeFontsButton"></button> 100 i18n-content="fontSettingsCustomizeFontsButton"></button>
101 </div> 101 </div>
102 <div class="section-group"> 102 <div class="section-group">
103 <label class="web-content-select-label"> 103 <label class="web-content-select-label">
104 <span i18n-content="defaultZoomLevelLabel"></span> 104 <span i18n-content="defaultZoomFactorLabel"></span>
105 <select id="defaultZoomLevel" pref="profile.default_zoom_level" 105 <select id="defaultZoomFactor" dataType="double"></select>
106 data-type="double" metric="Options_ChangeDefaultZoomLevel">
107 <option value="-3">57%</option>
108 <option value="-2">69%</option>
109 <option value="-1">83%</option>
110 <option value="0">100%</option>
111 <option value="1">120%</option>
112 <option value="2">144%</option>
113 <option value="3">172%</option>
114 <option value="4">207%</option>
115 <option value="5">248%</option>
116 <option value="6">298%</option>
117 </select>
118 </label> 106 </label>
119 </div> 107 </div>
120 <if expr="not pp_ifdef('chromeos') or os == 'win32'"> 108 <if expr="not pp_ifdef('chromeos') or os == 'win32'">
121 <div class="section-group"> 109 <div class="section-group">
122 </if> 110 </if>
123 <if expr="not pp_ifdef('chromeos')"> 111 <if expr="not pp_ifdef('chromeos')">
124 <button id="language-button" 112 <button id="language-button"
125 i18n-content="languageAndSpellCheckSettingsButton"></button> 113 i18n-content="languageAndSpellCheckSettingsButton"></button>
126 </if> 114 </if>
127 <if expr="not pp_ifdef('chromeos') or os == 'win32'"> 115 <if expr="not pp_ifdef('chromeos') or os == 'win32'">
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 <div class="checkbox"> 233 <div class="checkbox">
246 <label> 234 <label>
247 <input id="backgroundModeCheckbox" type="checkbox"> 235 <input id="backgroundModeCheckbox" type="checkbox">
248 <span i18n-content="backgroundModeCheckbox"></span> 236 <span i18n-content="backgroundModeCheckbox"></span>
249 </label> 237 </label>
250 </div> 238 </div>
251 </section> 239 </section>
252 </if> 240 </if>
253 </div> 241 </div>
254 </div> 242 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698