OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- |
| 3 -- Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 4 -- Use of this source code is governed by a BSD-style license that can be |
| 5 -- found in the LICENSE file. |
| 6 --> |
| 7 |
2 <html> | 8 <html> |
3 <head> | 9 <head> |
| 10 <meta charset="UTF-8"> |
4 <link rel="stylesheet" href="main.css"> | 11 <link rel="stylesheet" href="main.css"> |
| 12 <script src="constants.js"></script> |
| 13 <script src="polymer.min.js"></script> |
5 <script src="api_adapter.js"></script> | 14 <script src="api_adapter.js"></script> |
6 <script src="common.js"></script> | 15 <script src="voice_input.js"></script> |
7 <script src="layout_us.js"></script> | 16 <link rel="import" href="elements/kb-key.html"> |
| 17 <link rel="import" href="elements/kb-row.html"> |
| 18 <link rel="import" href="elements/kb-keyset.html"> |
| 19 <link rel="import" href="elements/kb-keyboard.html"> |
| 20 <link id="keysets" rel="import" href="keysets.html"> |
8 <script src="main.js"></script> | 21 <script src="main.js"></script> |
9 </head> | 22 </head> |
10 <body id="b"></body> | 23 <body> |
| 24 <kb-keyboard id="keyboard" touch-action="none" keyset="lower"></kb-keyboard> |
| 25 </body> |
11 </html> | 26 </html> |
OLD | NEW |