| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 -- Copyright 2013 The Chromium Authors. All rights reserved. | 3 -- Copyright 2013 The Chromium Authors. All rights reserved. |
| 4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
| 5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <meta charset="UTF-8"> | 10 <meta charset="UTF-8"> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 <link rel="import" href="elements/kb-altkey-set.html"> | 25 <link rel="import" href="elements/kb-altkey-set.html"> |
| 26 <link rel="import" href="elements/kb-key-codes.html"> | 26 <link rel="import" href="elements/kb-key-codes.html"> |
| 27 <link rel="import" href="elements/kb-key-base.html"> | 27 <link rel="import" href="elements/kb-key-base.html"> |
| 28 <link rel="import" href="elements/kb-key.html"> | 28 <link rel="import" href="elements/kb-key.html"> |
| 29 <link rel="import" href="elements/kb-keyboard.html"> | 29 <link rel="import" href="elements/kb-keyboard.html"> |
| 30 <link rel="import" href="elements/kb-keyset.html"> | 30 <link rel="import" href="elements/kb-keyset.html"> |
| 31 <link rel="import" href="elements/kb-row.html"> | 31 <link rel="import" href="elements/kb-row.html"> |
| 32 <!-- TODO(kevers|biao): Switch to dynamic loading strategy once supported | 32 <!-- TODO(kevers|biao): Switch to dynamic loading strategy once supported |
| 33 in Polymer (http://www.crbug.com/260278).--> | 33 in Polymer (http://www.crbug.com/260278).--> |
| 34 <link id="dvorak" rel="import" href="layouts/dvorak.html"> | 34 <link id="dvorak" rel="import" href="layouts/dvorak.html"> |
| 35 <link id="numeric" rel="import" href="layouts/numeric.html"> |
| 35 <link id="qwerty" rel="import" href="layouts/qwerty.html"> | 36 <link id="qwerty" rel="import" href="layouts/qwerty.html"> |
| 36 <!--TODO(stevet): Import 'Open Sans' font. --> | 37 <!--TODO(stevet): Import 'Open Sans' font. --> |
| 37 </head> | 38 </head> |
| 38 <body> | 39 <body> |
| 39 <kb-keyboard id="keyboard" touch-action="none" layout="qwerty"> | 40 <kb-keyboard id="keyboard" touch-action="none" layout="qwerty"> |
| 40 </kb-keyboard> | 41 </kb-keyboard> |
| 41 </body> | 42 </body> |
| 42 </html> | 43 </html> |
| OLD | NEW |