1<!-- 2@license 3Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 4This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt 5The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 6The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt 7Code distributed by Google as part of the polymer project is also 8subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt 9--> 10 11<link rel="import" href="../../polymer/polymer.html"> 12<link rel="import" href="../neon-shared-element-animatable-behavior.html"> 13<link rel="import" href="../../iron-resizable-behavior/iron-resizable-behavior.html"> 14 15<dom-module id="a-resizable-page"> 16 <template> 17 </template> 18</dom-module> 19 20<dom-module id="b-resizable-page"> 21 <template> 22 </template> 23</dom-module> 24 25<dom-module id="c-resizable-page"> 26 <template> 27 </template> 28</dom-module> 29 30<script> 31(function() { 32 33 Polymer({ 34 is: 'a-resizable-page', 35 behaviors: [ 36 Polymer.NeonSharedElementAnimatableBehavior, 37 Polymer.IronResizableBehavior 38 ] 39 }); 40 41 Polymer({ 42 is: 'b-resizable-page', 43 behaviors: [ 44 Polymer.NeonSharedElementAnimatableBehavior, 45 Polymer.IronResizableBehavior 46 ] 47 }); 48 49 Polymer({ 50 is: 'c-resizable-page', 51 behaviors: [ 52 Polymer.NeonSharedElementAnimatableBehavior, 53 Polymer.IronResizableBehavior 54 ] 55 }); 56 57})(); 58</script> 59