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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-extracted.js

Issue 1468623004: Update Polymer from 1.2.1 -> 1.2.3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@travis-yml
Patch Set: local-state.html Created 5 years 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 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con tainer>`. This 2 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con tainer>`. This
3 * behavior is implemented by `<paper-input>`. It exposes a number of properti es from 3 * behavior is implemented by `<paper-input>`. It exposes a number of properti es from
4 * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your 4 * `<paper-input-container>` and `<input is="iron-input">` and they should be bound in your
5 * template. 5 * template.
6 * 6 *
7 * The input element can be accessed by the `inputElement` property if you nee d to access 7 * The input element can be accessed by the `inputElement` property if you nee d to access
8 * properties or methods that are not exposed. 8 * properties or methods that are not exposed.
9 * @polymerBehavior Polymer.PaperInputBehavior 9 * @polymerBehavior Polymer.PaperInputBehavior
10 */ 10 */
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 /** 289 /**
290 * Bind this to the `<input is="iron-input">`'s `multiple` property, , use d with type=file. 290 * Bind this to the `<input is="iron-input">`'s `multiple` property, , use d with type=file.
291 */ 291 */
292 multiple: { 292 multiple: {
293 type: Boolean 293 type: Boolean
294 }, 294 },
295 295
296 _ariaDescribedBy: { 296 _ariaDescribedBy: {
297 type: String, 297 type: String,
298 value: '' 298 value: ''
299 },
300
301 _ariaLabelledBy: {
302 type: String,
303 value: ''
299 } 304 }
300 305
301 }, 306 },
302 307
303 listeners: { 308 listeners: {
304 'addon-attached': '_onAddonAttached' 309 'addon-attached': '_onAddonAttached'
305 }, 310 },
306 311
307 observers: [ 312 observers: [
308 '_focusedControlStateChanged(focused)' 313 '_focusedControlStateChanged(focused)'
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 bubbles: event.bubbles, 431 bubbles: event.bubbles,
427 cancelable: event.cancelable 432 cancelable: event.cancelable
428 }); 433 });
429 } 434 }
430 } 435 }
431 436
432 }; 437 };
433 438
434 /** @polymerBehavior */ 439 /** @polymerBehavior */
435 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha viorImpl]; 440 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha viorImpl];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698