| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --> | 9 --> |
| 10 <link rel="import" href="../polymer/polymer.html"> | 10 <link rel="import" href="../polymer/polymer.html"> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 <label hidden$="[[!label]]">[[label]]</label> | 71 <label hidden$="[[!label]]">[[label]]</label> |
| 72 | 72 |
| 73 <input is="iron-input" id="input" | 73 <input is="iron-input" id="input" |
| 74 aria-labelledby$="[[_ariaLabelledBy]]" | 74 aria-labelledby$="[[_ariaLabelledBy]]" |
| 75 aria-describedby$="[[_ariaDescribedBy]]" | 75 aria-describedby$="[[_ariaDescribedBy]]" |
| 76 disabled$="[[disabled]]" | 76 disabled$="[[disabled]]" |
| 77 bind-value="{{value}}" | 77 bind-value="{{value}}" |
| 78 invalid="{{invalid}}" | 78 invalid="{{invalid}}" |
| 79 prevent-invalid-input="[[preventInvalidInput]]" | 79 prevent-invalid-input="[[preventInvalidInput]]" |
| 80 allowedPattern="[[allowedPattern]]" | 80 allowed-pattern="[[allowedPattern]]" |
| 81 validator="[[validator]]" | 81 validator="[[validator]]" |
| 82 type$="[[type]]" | 82 type$="[[type]]" |
| 83 pattern$="[[pattern]]" | 83 pattern$="[[pattern]]" |
| 84 maxlength$="[[maxlength]]" | 84 maxlength$="[[maxlength]]" |
| 85 required$="[[required]]" | 85 required$="[[required]]" |
| 86 autocomplete$="[[autocomplete]]" | 86 autocomplete$="[[autocomplete]]" |
| 87 autofocus$="[[autofocus]]" | 87 autofocus$="[[autofocus]]" |
| 88 inputmode$="[[inputmode]]" | 88 inputmode$="[[inputmode]]" |
| 89 minlength$="[[minlength]]" | 89 minlength$="[[minlength]]" |
| 90 name$="[[name]]" | 90 name$="[[name]]" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 117 behaviors: [ | 117 behaviors: [ |
| 118 Polymer.PaperInputBehavior, | 118 Polymer.PaperInputBehavior, |
| 119 Polymer.IronFormElementBehavior | 119 Polymer.IronFormElementBehavior |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 }) | 122 }) |
| 123 | 123 |
| 124 })(); | 124 })(); |
| 125 | 125 |
| 126 </script> | 126 </script> |
| OLD | NEW |