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

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

Issue 16535004: Introduce StickyKeys settings item with behind flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 <label for="accessibility-large-cursor-check" 638 <label for="accessibility-large-cursor-check"
639 i18n-content="accessibilityLargeCursor"> 639 i18n-content="accessibilityLargeCursor">
640 </label> 640 </label>
641 <span class="controlled-setting-indicator" 641 <span class="controlled-setting-indicator"
642 pref="settings.a11y.large_cursor_enabled"> 642 pref="settings.a11y.large_cursor_enabled">
643 </span> 643 </span>
644 </span> 644 </span>
645 </span> 645 </span>
646 </div> 646 </div>
647 </div> 647 </div>
648 <div id="accessibility-sticky-keys" class="option-name" hidden>
649 <div class="checkbox">
650 <span class="controlled-setting-with-label">
651 <input id="accessibility-sticky-keys-check"
652 pref="settings.a11y.sticky_keys_enabled" type="checkbox">
653 <span>
654 <label for="accessibility-sticky-keys-check"
655 i18n-content="accessibilityStickyKeys">
656 </label>
657 <span class="controlled-setting-indicator"
658 pref="settings.a11y.sticky_keys_enabled">
659 </span>
660 </span>
661 </span>
662 </div>
663 </div>
648 <div class="option-name"> 664 <div class="option-name">
649 <div class="checkbox"> 665 <div class="checkbox">
650 <span class="controlled-setting-with-label"> 666 <span class="controlled-setting-with-label">
651 <input id="accessibility-spoken-feedback-check" 667 <input id="accessibility-spoken-feedback-check"
652 pref="settings.accessibility" type="checkbox"> 668 pref="settings.accessibility" type="checkbox">
653 <span> 669 <span>
654 <label for="accessibility-spoken-feedback-check" 670 <label for="accessibility-spoken-feedback-check"
655 i18n-content="accessibilitySpokenFeedback"> 671 i18n-content="accessibilitySpokenFeedback">
656 </label> 672 </label>
657 <span class="controlled-setting-indicator" 673 <span class="controlled-setting-indicator"
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 </div> 777 </div>
762 </section> 778 </section>
763 </div> <!-- advanced-settings-container --> 779 </div> <!-- advanced-settings-container -->
764 </div> <!-- advanced-settings --> 780 </div> <!-- advanced-settings -->
765 <footer> 781 <footer>
766 <button id="advanced-settings-expander" class="link-button" 782 <button id="advanced-settings-expander" class="link-button"
767 i18n-content="showAdvancedSettings"> 783 i18n-content="showAdvancedSettings">
768 </button> 784 </button>
769 </footer> 785 </footer>
770 </div> 786 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698