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

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

Issue 9295010: Hide accessibility options for unimplemented features. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove option UI Created 8 years, 10 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
« no previous file with comments | « chrome/browser/resources/options/chromeos/system_options.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="advancedPage" class="page" hidden> 1 <div id="advancedPage" class="page" hidden>
2 <header><h1 i18n-content="advancedPage"></h1></header> 2 <header><h1 i18n-content="advancedPage"></h1></header>
3 <if expr="pp_ifdef('chromeos')"> 3 <if expr="pp_ifdef('chromeos')">
4 <section> 4 <section>
5 <h3 i18n-content="datetimeTitle"></h3> 5 <h3 i18n-content="datetimeTitle"></h3>
6 <div class="option-control-table"> 6 <div class="option-control-table">
7 <span class="option-name" i18n-content="timezone"></span> 7 <span class="option-name" i18n-content="timezone"></span>
8 <div id="timezone-value"> 8 <div id="timezone-value">
9 <select id="timezone-select" class="control" i18n-options="timezoneList" 9 <select id="timezone-select" class="control" i18n-options="timezoneList"
10 data-type="string" pref="cros.system.timezone"></select> 10 data-type="string" pref="cros.system.timezone"></select>
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 <h3 i18n-content="accessibilityTitle"></h3> 284 <h3 i18n-content="accessibilityTitle"></h3>
285 <div class="option-control-table"> 285 <div class="option-control-table">
286 <div class="option-name"> 286 <div class="option-name">
287 <div class="checkbox"> 287 <div class="checkbox">
288 <label> 288 <label>
289 <input id="accessibility-spoken-feedback-check" type="checkbox"> 289 <input id="accessibility-spoken-feedback-check" type="checkbox">
290 <span i18n-content="accessibilitySpokenFeedback"></span> 290 <span i18n-content="accessibilitySpokenFeedback"></span>
291 </label> 291 </label>
292 </div> 292 </div>
293 </div> 293 </div>
294 <div class="option-name">
295 <div class="checkbox">
296 <label>
297 <input id="accessibility-high-contrast-check" type="checkbox">
298 <span i18n-content="accessibilityHighContrast"></span>
299 </label>
300 </div>
301 </div>
302 <div class="option-name">
303 <div class="checkbox">
304 <label>
305 <input id="accessibility-screen-magnifier-check" type="checkbox">
306 <span i18n-content="accessibilityScreenMagnifier"></span>
307 </label>
308 </div>
309 </div>
310 <div class="option-name">
311 <div class="checkbox">
312 <label>
313 <input id="accessibility-virtual-keyboard-check" type="checkbox">
314 <span i18n-content="accessibilityVirtualKeyboard"></span>
315 </label>
316 </div>
317 </div>
318 </div> 294 </div>
319 </section> 295 </section>
320 </if> 296 </if>
321 <if expr="os != 'darwin' and not pp_ifdef('chromeos')"> 297 <if expr="os != 'darwin' and not pp_ifdef('chromeos')">
322 <section id="background-section"> 298 <section id="background-section">
323 <h3 i18n-content="advancedSectionTitleBackground"></h3> 299 <h3 i18n-content="advancedSectionTitleBackground"></h3>
324 <div class="checkbox"> 300 <div class="checkbox">
325 <label> 301 <label>
326 <input id="backgroundModeCheckbox" type="checkbox"> 302 <input id="backgroundModeCheckbox" type="checkbox">
327 <span i18n-content="backgroundModeCheckbox"></span> 303 <span i18n-content="backgroundModeCheckbox"></span>
328 </label> 304 </label>
329 </div> 305 </div>
330 </section> 306 </section>
331 </if> 307 </if>
332 </div> 308 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/chromeos/system_options.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698