1 <!-- 2 -- Copyright 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 <polymer-element name="kb-altkey-container" attributes="keyset" 8 on-pointerup="{{up}}" on-pointerout="{{out}}"> 9 <template> 10 <style> 11 :host { 12 -webkit-box-flex: 1; 13 bottom: 0; 14 left: 0; 15 position: absolute; 16 right: 0; 17 top: 0; 18 } 19 </style> 20 <content select="#{{keyset}}"></content> 21 </template> 22 </polymer-element> 23