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

Side by Side Diff: ui/keyboard/resources/layouts/system-qwerty.html

Issue 183923036: Fix wrong character label on keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 -- Copyright 2013 The Chromium Authors. All rights reserved. 2 -- Copyright 2013 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be 3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file. 4 -- found in the LICENSE file.
5 --> 5 -->
6 6
7 <link id="function-key-row" rel="import" href="function-key-row.html"> 7 <link id="function-key-row" rel="import" href="function-key-row.html">
8 8
9 <template> 9 <template>
10 <kb-keyset id="system-qwerty-upper" align="center"> 10 <kb-keyset id="system-qwerty-upper" align="center">
11 <kb-row> 11 <kb-row>
12 <kb-key-sequence invert=true keys="'1234567890-=" 12 <kb-key-sequence invert=true keys="`1234567890-="
13 hintTexts="~!@#$%^&*()_+"> </kb-key-sequence> 13 hintTexts="~!@#$%^&*()_+"> </kb-key-sequence>
14 <kb-key class="dark" char="&#x0008;" repeat align="right" 14 <kb-key class="dark" char="&#x0008;" repeat align="right"
15 image="backspace" sound="keypress-delete" stretch weight="190"> 15 image="backspace" sound="keypress-delete" stretch weight="190">
16 </kb-key> 16 </kb-key>
17 </kb-row> 17 </kb-row>
18 <kb-row align="left"> 18 <kb-row align="left">
19 <kb-key class="dark" char="&#x0009;" align="center" 19 <kb-key class="dark" char="&#x0009;" align="center"
20 image="tab" weight="155"></kb-key> 20 image="tab" weight="155"></kb-key>
21 <kb-key-sequence keys="QWERTYUIOP"></kb-key-sequence> 21 <kb-key-sequence keys="QWERTYUIOP"></kb-key-sequence>
22 <kb-key-sequence invert=true keys="[]\" 22 <kb-key-sequence invert=true keys="[]\"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 <kb-key class="cursor dark" repeat char="Arrow-Right" image="right" 54 <kb-key class="cursor dark" repeat char="Arrow-Right" image="right"
55 weight="75"></kb-key> 55 weight="75"></kb-key>
56 <kb-hide-keyboard-key image="keyboard" stretch></kb-hide-keyboard-key> 56 <kb-hide-keyboard-key image="keyboard" stretch></kb-hide-keyboard-key>
57 </kb-row> 57 </kb-row>
58 <kb-altkey-container hidden> 58 <kb-altkey-container hidden>
59 </kb-altkey-container> 59 </kb-altkey-container>
60 </kb-keyset> 60 </kb-keyset>
61 61
62 <kb-keyset id="system-qwerty-lower" align="center" isDefault=true> 62 <kb-keyset id="system-qwerty-lower" align="center" isDefault=true>
63 <kb-row> 63 <kb-row>
64 <kb-key-sequence keys="'1234567890-=" hintTexts="~!@#$%^&*()_+"> 64 <kb-key-sequence keys="`1234567890-=" hintTexts="~!@#$%^&*()_+">
65 </kb-key-sequence> 65 </kb-key-sequence>
66 <kb-key class="dark" weight="190" char="&#x0008;" 66 <kb-key class="dark" weight="190" char="&#x0008;"
67 image="backspace" repeat sound="keypress-delete" stretch 67 image="backspace" repeat sound="keypress-delete" stretch
68 align="right"></kb-key> 68 align="right"></kb-key>
69 </kb-row> 69 </kb-row>
70 <kb-row align="left"> 70 <kb-row align="left">
71 <kb-key class="dark" char="&#x0009;" align="center" 71 <kb-key class="dark" char="&#x0009;" align="center"
72 image="tab" weight="155"></kb-key> 72 image="tab" weight="155"></kb-key>
73 <kb-key-sequence keys="qwertyuiop"></kb-key-sequence> 73 <kb-key-sequence keys="qwertyuiop"></kb-key-sequence>
74 <kb-key-sequence keys="[]\" hintTexts="{}|"></kb-key-sequence> 74 <kb-key-sequence keys="[]\" hintTexts="{}|"></kb-key-sequence>
(...skipping 26 matching lines...) Expand all
101 <kb-key class="cursor dark" repeat char="Arrow-Down" image="down" 101 <kb-key class="cursor dark" repeat char="Arrow-Down" image="down"
102 weight="75"> </kb-key> 102 weight="75"> </kb-key>
103 <kb-key class="cursor dark" repeat char="Arrow-Right" image="right" 103 <kb-key class="cursor dark" repeat char="Arrow-Right" image="right"
104 weight="75"></kb-key> 104 weight="75"></kb-key>
105 <kb-hide-keyboard-key image="keyboard" stretch></kb-hide-keyboard-key> 105 <kb-hide-keyboard-key image="keyboard" stretch></kb-hide-keyboard-key>
106 </kb-row> 106 </kb-row>
107 <kb-altkey-container hidden> 107 <kb-altkey-container hidden>
108 </kb-altkey-container> 108 </kb-altkey-container>
109 </kb-keyset> 109 </kb-keyset>
110 </template> 110 </template>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698