diff options
author | yusukes@chromium.org <yusukes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-12 01:28:00 +0000 |
---|---|---|
committer | yusukes@chromium.org <yusukes@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-12 01:28:00 +0000 |
commit | 5483b446fdffe2d3015e421c84f480dd39162331 (patch) | |
tree | 43ac4980782f71270d12e18fcfa336243e90b577 /chrome/browser/resources/options | |
parent | 50307586363272bb8b133004889772b4919ad8fd (diff) | |
download | chromium_src-5483b446fdffe2d3015e421c84f480dd39162331.zip chromium_src-5483b446fdffe2d3015e421c84f480dd39162331.tar.gz chromium_src-5483b446fdffe2d3015e421c84f480dd39162331.tar.bz2 |
Implement DOMUI version of key repeat options.
Added "Keyboard" section to chromeos_system_options.html which has the following:
- "Repeat keys" checkbox.
- "Key repeat delay" slider.
- "Key repeat speed" slider.
This CL depends on http://codereview.chromium.org/3023044/.
BUG=chromium-os:5481
TEST=manually
Review URL: http://codereview.chromium.org/3154002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55827 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/options')
-rw-r--r-- | chrome/browser/resources/options/chromeos_system_options.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/chrome/browser/resources/options/chromeos_system_options.html b/chrome/browser/resources/options/chromeos_system_options.html index 0fd7df7..a68ab4f 100644 --- a/chrome/browser/resources/options/chromeos_system_options.html +++ b/chrome/browser/resources/options/chromeos_system_options.html @@ -57,6 +57,48 @@ </table> </section> <section> + <h3 i18n-content="keyboard"></h3> + <table class="option-control-table"> + <tr> + <td class="option-name" colspan="4"><label><input + id="repeat-keys-check" + pref="settings.language.xkb_auto_repeat_enabled" + type="checkbox"><span + i18n-content="repeat_keys"></span></label></td> + </tr> + <tr> + <td class="option-name" i18n-content="repeat_delay"></td> + <td class="option-value"> + <label><span i18n-content="repeat_delay_short"></span></label> + </td> + <td class="option-value"> + <input id="repeat-delay-range" type="range" + i18n-values="min:repeat_delay_min;max:repeat_delay_max" + pref="settings.language.xkb_auto_repeat_delay" + class="touch-slider"> + </td> + <td class="option-value"> + <label><span i18n-content="repeat_delay_long"></span></label> + </td> + </tr> + <tr> + <td class="option-name" i18n-content="repeat_speed"></td> + <td class="option-value"> + <label><span i18n-content="repeat_speed_fast"></span></label> + </td> + <td class="option-value"> + <input id="repeat-speed-range" type="range" + i18n-values="min:repeat_speed_min;max:repeat_speed_max" + pref="settings.language.xkb_auto_repeat_interval" + class="touch-slider"> + </td> + <td class="option-value"> + <label><span i18n-content="repeat_speed_slow"></span></label> + </td> + </tr> + </table> + </section> + <section> <h3 i18n-content="accessibility_title"></h3> <table class="option-control-table"> <tr> |