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

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

Issue 1862213002: Roll third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove obsolete appearance_browsertest.js, result of a previous bad merge. Created 4 years, 8 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 * Use `Polymer.PaperInputAddonBehavior` to implement an add-on for `<paper-in put-container>`. A 2 * Use `Polymer.PaperInputAddonBehavior` to implement an add-on for `<paper-in put-container>`. A
3 * add-on appears below the input, and may display information based on the in put value and 3 * add-on appears below the input, and may display information based on the in put value and
4 * validity such as a character counter or an error message. 4 * validity such as a character counter or an error message.
5 * @polymerBehavior 5 * @polymerBehavior
6 */ 6 */
7 Polymer.PaperInputAddonBehavior = { 7 Polymer.PaperInputAddonBehavior = {
8 8
9 hostAttributes: { 9 hostAttributes: {
10 'add-on': '' 10 'add-on': ''
(...skipping 10 matching lines...) Expand all
21 * value: (string|undefined), 21 * value: (string|undefined),
22 * invalid: boolean 22 * invalid: boolean
23 * }} state - 23 * }} state -
24 * inputElement: The input element. 24 * inputElement: The input element.
25 * value: The input value. 25 * value: The input value.
26 * invalid: True if the input value is invalid. 26 * invalid: True if the input value is invalid.
27 */ 27 */
28 update: function(state) { 28 update: function(state) {
29 } 29 }
30 30
31 }; 31 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698