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

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

Issue 14200048: Introduce AcccessibilityManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 id="settings" class="page" hidden> 1 <div id="settings" class="page" hidden>
2 <header> 2 <header>
3 <h1 i18n-content="settingsTitle"></h1> 3 <h1 i18n-content="settingsTitle"></h1>
4 </header> 4 </header>
5 <if expr="not pp_ifdef('chromeos')"> 5 <if expr="not pp_ifdef('chromeos')">
6 <include src="sync_section.html"> 6 <include src="sync_section.html">
7 </if> 7 </if>
8 <if expr="pp_ifdef('chromeos')"> 8 <if expr="pp_ifdef('chromeos')">
9 <section> 9 <section>
10 <h3 i18n-content="sectionTitleInternet"></h3> 10 <h3 i18n-content="sectionTitleInternet"></h3>
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
625 </label> 625 </label>
626 <span class="controlled-setting-indicator" 626 <span class="controlled-setting-indicator"
627 pref="settings.a11y.enable_menu"> 627 pref="settings.a11y.enable_menu">
628 </span> 628 </span>
629 </span> 629 </span>
630 </div> 630 </div>
631 </div> 631 </div>
632 <div class="option-name"> 632 <div class="option-name">
633 <div class="checkbox"> 633 <div class="checkbox">
634 <label> 634 <label>
635 <input id="accessibility-spoken-feedback-check" type="checkbox"> 635 <input id="accessibility-spoken-feedback-check"
636 pref="settings.accessibility" type="checkbox">
636 <span i18n-content="accessibilitySpokenFeedback"></span> 637 <span i18n-content="accessibilitySpokenFeedback"></span>
637 </label> 638 </label>
638 </div> 639 </div>
639 </div> 640 </div>
640 <div class="option-name"> 641 <div class="option-name">
641 <div class="checkbox"> 642 <div class="checkbox">
642 <label> 643 <label>
643 <input id="accessibility-high-contrast-check" type="checkbox"> 644 <input id="accessibility-high-contrast-check"
645 pref="settings.a11y.high_contrast_enabled" type="checkbox">
644 <span i18n-content="accessibilityHighContrast"></span> 646 <span i18n-content="accessibilityHighContrast"></span>
645 </label> 647 </label>
646 </div> 648 </div>
647 </div> 649 </div>
648 <div class="option-name"> 650 <div class="option-name">
649 <div class="checkbox"> 651 <div class="checkbox">
650 <label> 652 <label>
651 <input id="accessibility-screen-magnifier-check" 653 <input id="accessibility-screen-magnifier-check"
652 pref="settings.a11y.screen_magnifier" type="checkbox"> 654 pref="settings.a11y.screen_magnifier" type="checkbox">
653 <span i18n-content="accessibilityScreenMagnifier"></span> 655 <span i18n-content="accessibilityScreenMagnifier"></span>
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 </button> 729 </button>
728 </section> 730 </section>
729 </div> <!-- advanced-settings-container --> 731 </div> <!-- advanced-settings-container -->
730 </div> <!-- advanced-settings --> 732 </div> <!-- advanced-settings -->
731 <footer> 733 <footer>
732 <button id="advanced-settings-expander" class="link-button" 734 <button id="advanced-settings-expander" class="link-button"
733 i18n-content="showAdvancedSettings"> 735 i18n-content="showAdvancedSettings">
734 </button> 736 </button>
735 </footer> 737 </footer>
736 </div> 738 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698