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

Side by Side Diff: ui/keyboard/resources/index.html

Issue 15176004: Web Component Virtual Keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698