summaryrefslogtreecommitdiff
path: root/chromium/ui/keyboard/resources/layouts/numeric.html
blob: 6375f734a5fe81b3e9d88b92f35d8b71266c9a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!--
  -- Copyright 2013 The Chromium Authors. All rights reserved.
  -- Use of this source code is governed by a BSD-style license that can be
  -- found in the LICENSE file.
  -->

<template>
  <kb-keyset id="numeric-symbol" isDefault=true>
    <kb-row>
      <kb-key>1</kb-key><kb-key>2</kb-key><kb-key>3</kb-key>
      <kb-key class="dark">-</kb-key>
    </kb-row>
    <kb-row>
      <kb-key>4</kb-key><kb-key>5</kb-key><kb-key>6</kb-key>
      <kb-key class="dark">,</kb-key>
    </kb-row>
    <kb-row>
      <kb-key>7</kb-key><kb-key>8</kb-key><kb-key>9</kb-key>
      <kb-key char="&#x0008;" repeat class="dark">backspace</kb-key>
    </kb-row>
    <kb-row>
      <kb-key char=" " class="dark">space</kb-key>
      <kb-key>0</kb-key>
      <kb-key class="dark">.</kb-key>
      <kb-key char="&#x0009;" class="dark">next</kb-key>
    </kb-row>
  </kb-keyset>
</template>