diff options
author | stevet@chromium.org <stevet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 22:59:45 +0000 |
---|---|---|
committer | stevet@chromium.org <stevet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-03 22:59:45 +0000 |
commit | b626e217821cc60b332372b49a90e5c264ecafc6 (patch) | |
tree | fb0483925e70cd58d14fa5e4f94db89ec4107b4d /ui/keyboard | |
parent | bf94a4df462844778203ed2394aa0b37236e3437 (diff) | |
download | chromium_src-b626e217821cc60b332372b49a90e5c264ecafc6.zip chromium_src-b626e217821cc60b332372b49a90e5c264ecafc6.tar.gz chromium_src-b626e217821cc60b332372b49a90e5c264ecafc6.tar.bz2 |
Add exclamation and question mark to the accent keys.
Review URL: https://chromiumcodereview.appspot.com/18519005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@210060 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/keyboard')
-rw-r--r-- | ui/keyboard/resources/keysets.html | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ui/keyboard/resources/keysets.html b/ui/keyboard/resources/keysets.html index 634c8ea..2bb6ce9 100644 --- a/ui/keyboard/resources/keysets.html +++ b/ui/keyboard/resources/keysets.html @@ -157,7 +157,7 @@ <kb-key class="left-shift dark" toKeyset="upper" char="Invalid" align="left">shift</kb-key> <kb-key>z</kb-key><kb-key>x</kb-key><kb-key accents="c">c</kb-key><kb-key>v</kb-key> <kb-key>b</kb-key><kb-key accents="n">n</kb-key><kb-key>m</kb-key> - <kb-key superscript="!">,</kb-key><kb-key superscript="?">.</kb-key> + <kb-key superscript="!" accents="comma">,</kb-key><kb-key superscript="?" accents="period">.</kb-key> <kb-key class="right-shift dark" toKeyset="upper" char="Invalid" align="right">shift</kb-key> </kb-row> <kb-row> @@ -253,6 +253,14 @@ <kb-accent-key>ñ</kb-accent-key> <kb-accent-key class="active">n</kb-accent-key> </kb-accent-set> + <kb-accent-set id="comma" offset=1> + <kb-accent-key>!</kb-accent-key> + <kb-accent-key class="active">,</kb-accent-key> + </kb-accent-set> + <kb-accent-set id="period" offset=1> + <kb-accent-key>?</kb-accent-key> + <kb-accent-key class="active">.</kb-accent-key> + </kb-accent-set> </kb-accent-container> </kb-keyset> |