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

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

Issue 11280236: A11y: Add the option to always show the a11y tray menu regardless of the state of a11y features (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 </section> 596 </section>
597 <if expr="pp_ifdef('chromeos')"> 597 <if expr="pp_ifdef('chromeos')">
598 <include src="startup_section.html"> 598 <include src="startup_section.html">
599 </if> 599 </if>
600 <section> 600 <section>
601 <h3 i18n-content="accessibilityTitle"></h3> 601 <h3 i18n-content="accessibilityTitle"></h3>
602 <div class="option-control-table"> 602 <div class="option-control-table">
603 <div class="option-name"> 603 <div class="option-name">
604 <div class="checkbox"> 604 <div class="checkbox">
605 <label> 605 <label>
606 <input id="accessibility-should-always-show-menu"
607 pref="settings.a11y.always_show_menu"
James Hawkins 2012/11/29 20:34:55 nit: Wrapped lines should be indented only 4 space
yoshiki 2012/11/30 14:55:34 Done.
608 type="checkbox">
609 <span i18n-content="accessibilityAlwaysShowMenu"></span>
610 </label>
611 </div>
612 </div>
613 <div class="option-name">
614 <div class="checkbox">
615 <label>
606 <input id="accessibility-spoken-feedback-check" type="checkbox"> 616 <input id="accessibility-spoken-feedback-check" type="checkbox">
607 <span i18n-content="accessibilitySpokenFeedback"></span> 617 <span i18n-content="accessibilitySpokenFeedback"></span>
608 </label> 618 </label>
609 </div> 619 </div>
610 </div> 620 </div>
611 <div class="option-name"> 621 <div class="option-name">
612 <div class="checkbox"> 622 <div class="checkbox">
613 <label> 623 <label>
614 <input id="accessibility-high-contrast-check" type="checkbox"> 624 <input id="accessibility-high-contrast-check" type="checkbox">
615 <span i18n-content="accessibilityHighContrast"></span> 625 <span i18n-content="accessibilityHighContrast"></span>
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 </section> 686 </section>
677 </if> 687 </if>
678 </div> <!-- advanced-settings-container --> 688 </div> <!-- advanced-settings-container -->
679 </div> <!-- advanced-settings --> 689 </div> <!-- advanced-settings -->
680 <footer> 690 <footer>
681 <button id="advanced-settings-expander" class="link-button" 691 <button id="advanced-settings-expander" class="link-button"
682 i18n-content="showAdvancedSettings"> 692 i18n-content="showAdvancedSettings">
683 </button> 693 </button>
684 </footer> 694 </footer>
685 </div> 695 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698