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

Side by Side Diff: ui/keyboard/resources/elements/kb-keyset.html

Issue 15176004: Web Component Virtual Keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use third_party polymer Created 7 years, 6 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
(Empty)
1 <!--
2 -- Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 -- Use of this source code is governed by a BSD-style license that can be
4 -- found in the LICENSE file.
5 -->
6
7 <element name="kb-keyset" attributes="toKeyset" on-key-up="keyUp">
8 <template>
9 <style>
10 @host {
11 * {
12 -webkit-box-orient: vertical;
13 -webkit-box-flex: 1;
14 display: -webkit-box;
15 }
16 }
17 </style>
18 <content></content>
19 </template>
20 <script>
21 Polymer.register(this, {
22 keyUp: function(event, detail) {
23 if (!detail.toKeyset)
24 detail.toKeyset = this.toKeyset;
25 }
26 });
27 </script>
28 </element>
OLDNEW
« no previous file with comments | « ui/keyboard/resources/elements/kb-keyboard.html ('k') | ui/keyboard/resources/elements/kb-row.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698