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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-dropdown-menu/paper-dropdown-menu-light.html

Issue 2158913007: Roll Polymer from 1.5.0 -> 1.6.0 to pick up native CSS custom props (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 4 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
OLDNEW
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 right:0; 259 right:0;
260 bottom: -12px; 260 bottom: -12px;
261 } 261 }
262 262
263 :host([invalid]) .error { 263 :host([invalid]) .error {
264 visibility: visible; 264 visibility: visible;
265 } 265 }
266 </style> 266 </style>
267 267
268 <!-- this div fulfills an a11y requirement for combobox, do not remove --> 268 <!-- this div fulfills an a11y requirement for combobox, do not remove -->
269 <div role="button"></div> 269 <span role="button"></span>
270 <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}}"> 270 <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]]">
271 <div class="dropdown-trigger"> 271 <div class="dropdown-trigger">
272 <label hidden$="[[!label]]" class$="[[_computeLabelClass(noLabelFloat,al waysFloatLabel,hasContent)]]">[[label]]</label> 272 <label hidden$="[[!label]]" class$="[[_computeLabelClass(noLabelFloat,al waysFloatLabel,hasContent)]]">[[label]]</label>
273 <div id="input" tabindex="-1">&nbsp;</div> 273 <div id="input" tabindex="-1">&nbsp;</div>
274 <iron-icon icon="paper-dropdown-menu:arrow-drop-down"></iron-icon> 274 <iron-icon icon="paper-dropdown-menu:arrow-drop-down"></iron-icon>
275 <span class="error">[[errorMessage]]</span> 275 <span class="error">[[errorMessage]]</span>
276 </div> 276 </div>
277 <content id="content" select=".dropdown-content"></content> 277 <content id="content" select=".dropdown-content"></content>
278 </paper-menu-button> 278 </paper-menu-button>
279 </template> 279 </template>
280 280
281 </dom-module> 281 </dom-module>
282 <script src="paper-dropdown-menu-light-extracted.js"></script></body></html> 282 <script src="paper-dropdown-menu-light-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698