| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2016 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 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
| 10 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html
"> | 10 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html
"> |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 :host([invalid]) .error { | 270 :host([invalid]) .error { |
| 271 visibility: visible; | 271 visibility: visible; |
| 272 } | 272 } |
| 273 </style> | 273 </style> |
| 274 | 274 |
| 275 <!-- this div fulfills an a11y requirement for combobox, do not remove --> | 275 <!-- this div fulfills an a11y requirement for combobox, do not remove --> |
| 276 <span role="button"></span> | 276 <span role="button"></span> |
| 277 <paper-menu-button id="menuButton" vertical-align="[[verticalAlign]]" horizo
ntal-align="[[horizontalAlign]]" vertical-offset="[[_computeMenuVerticalOffset(n
oLabelFloat)]]" disabled="[[disabled]]" no-animations="[[noAnimations]]" on-iron
-select="_onIronSelect" on-iron-deselect="_onIronDeselect" opened="{{opened}}" c
lose-on-activate="" allow-outside-scroll="[[allowOutsideScroll]]"> | 277 <paper-menu-button id="menuButton" vertical-align="[[verticalAlign]]" horizo
ntal-align="[[horizontalAlign]]" vertical-offset="[[_computeMenuVerticalOffset(n
oLabelFloat)]]" disabled="[[disabled]]" no-animations="[[noAnimations]]" on-iron
-select="_onIronSelect" on-iron-deselect="_onIronDeselect" opened="{{opened}}" c
lose-on-activate="" allow-outside-scroll="[[allowOutsideScroll]]"> |
| 278 <div class="dropdown-trigger"> | 278 <div class="dropdown-trigger"> |
| 279 <label hidden$="[[!label]]" class$="[[_computeLabelClass(noLabelFloat,al
waysFloatLabel,hasContent)]]">[[label]]</label> | 279 <label class$="[[_computeLabelClass(noLabelFloat,alwaysFloatLabel,hasCon
tent)]]"> |
| 280 [[label]] |
| 281 </label> |
| 280 <div id="input" tabindex="-1"> </div> | 282 <div id="input" tabindex="-1"> </div> |
| 281 <iron-icon icon="paper-dropdown-menu:arrow-drop-down"></iron-icon> | 283 <iron-icon icon="paper-dropdown-menu:arrow-drop-down"></iron-icon> |
| 282 <span class="error">[[errorMessage]]</span> | 284 <span class="error">[[errorMessage]]</span> |
| 283 </div> | 285 </div> |
| 284 <content id="content" select=".dropdown-content"></content> | 286 <content id="content" select=".dropdown-content"></content> |
| 285 </paper-menu-button> | 287 </paper-menu-button> |
| 286 </template> | 288 </template> |
| 287 | 289 |
| 288 </dom-module> | 290 </dom-module> |
| 289 <script src="paper-dropdown-menu-light-extracted.js"></script></body></html> | 291 <script src="paper-dropdown-menu-light-extracted.js"></script></body></html> |
| OLD | NEW |