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

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

Issue 27196006: Add autoclick to settings page under the accessibility section. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Stop using float for layout Created 7 years, 2 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 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 </div> 740 </div>
741 <div class="option-name" id="accessibility-tap-dragging"> 741 <div class="option-name" id="accessibility-tap-dragging">
742 <div class="checkbox"> 742 <div class="checkbox">
743 <label> 743 <label>
744 <input id="accessibility-tap-dragging-check" 744 <input id="accessibility-tap-dragging-check"
745 pref="settings.touchpad.enable_tap_dragging" type="checkbox"> 745 pref="settings.touchpad.enable_tap_dragging" type="checkbox">
746 <span i18n-content="accessibilityTapDragging"></span> 746 <span i18n-content="accessibilityTapDragging"></span>
747 </label> 747 </label>
748 </div> 748 </div>
749 </div> 749 </div>
750 <div class="option-name" id="accessibility-autoclick" hidden>
751 <span class="controlled-setting-with-label">
752 <input id="accessibility-autoclick-check"
753 pref="settings.a11y.autoclick" type="checkbox">
754 <span>
xiyuan 2013/10/16 20:21:40 Think we can change this to a <div> and remove the
Tim Song 2013/10/16 21:21:00 Done. .controlled-setting-with-label assumes a spa
xiyuan 2013/10/16 21:34:12 Okay.
755 <div>
756 <label for="accessibility-autoclick-check"
757 i18n-content="accessibilityAutoclick">
758 </label>
759 <span class="controlled-setting-indicator"
760 pref="settings.a11y.autoclick">
761 </span>
762 </div>
763 <div>
764 <label for="accessibility-autoclick-dropdown"
765 i18n-content="accessibilityAutoclickDropdown">
766 </label>
767 <select id="accessibility-autoclick-dropdown" class="control"
768 data-type="number"
769 pref="settings.a11y.autoclick_delay_ms">
770 <option value="200"
771 i18n-content="autoclickDelayExtremelyShort"></option>
772 <option value="400"
773 i18n-content="autoclickDelayVeryShort"></option>
774 <option value="600" i18n-content="autoclickDelayShort"></option>
775 <option value="800" i18n-content="autoclickDelayLong"></option>
776 <option value="1000"
777 i18n-content="autoclickDelayVeryLong"></option>
778 </select>
779 <span class="controlled-setting-indicator"
780 pref="settings.a11y.autoclick_delay_ms">
781 </span>
782 </div>
783 </span>
784 </span>
785 </div>
750 </section> 786 </section>
751 <if expr="pp_ifdef('chromeos')"> 787 <if expr="pp_ifdef('chromeos')">
752 <section id="factory-reset-section" hidden> 788 <section id="factory-reset-section" hidden>
753 <h3 i18n-content="factoryResetTitle"></h3> 789 <h3 i18n-content="factoryResetTitle"></h3>
754 <div> 790 <div>
755 <span class="settings-row" i18n-content="factoryResetDescription"> 791 <span class="settings-row" i18n-content="factoryResetDescription">
756 </span> 792 </span>
757 <button id="factory-reset-restart" 793 <button id="factory-reset-restart"
758 i18n-content="factoryResetRestart"> 794 i18n-content="factoryResetRestart">
759 </button> 795 </button>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 </div> 842 </div>
807 </section> 843 </section>
808 </div> <!-- advanced-settings-container --> 844 </div> <!-- advanced-settings-container -->
809 </div> <!-- advanced-settings --> 845 </div> <!-- advanced-settings -->
810 <footer> 846 <footer>
811 <button id="advanced-settings-expander" class="link-button" 847 <button id="advanced-settings-expander" class="link-button"
812 i18n-content="showAdvancedSettings"> 848 i18n-content="showAdvancedSettings">
813 </button> 849 </button>
814 </footer> 850 </footer>
815 </div> 851 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/browser_options.css ('k') | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698