OLD | NEW |
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="" repeat align="right" | 14 <kb-key class="dark" char="" 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="	" align="center" | 19 <kb-key class="dark" char="	" 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 Loading... |
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="" | 66 <kb-key class="dark" weight="190" char="" |
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="	" align="center" | 71 <kb-key class="dark" char="	" 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 Loading... |
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> |
OLD | NEW |