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

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

Issue 1401633002: Update Polymer from 1.1.4 -> 1.1.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dzhioev@ review Created 5 years, 2 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 Polymer({
2 Polymer({
3 is: 'paper-textarea', 2 is: 'paper-textarea',
4 3
5 behaviors: [ 4 behaviors: [
6 Polymer.PaperInputBehavior 5 Polymer.PaperInputBehavior
7 ], 6 ],
8 7
9 properties: { 8 properties: {
10 _ariaLabelledBy: { 9 _ariaLabelledBy: {
11 observer: '_ariaLabelledByChanged', 10 observer: '_ariaLabelledByChanged',
12 type: String 11 type: String
(...skipping 30 matching lines...) Expand all
43 } 42 }
44 }, 43 },
45 44
46 _ariaLabelledByChanged: function(ariaLabelledBy) { 45 _ariaLabelledByChanged: function(ariaLabelledBy) {
47 this.$.input.textarea.setAttribute('aria-labelledby', ariaLabelledBy); 46 this.$.input.textarea.setAttribute('aria-labelledby', ariaLabelledBy);
48 }, 47 },
49 48
50 _ariaDescribedByChanged: function(ariaDescribedBy) { 49 _ariaDescribedByChanged: function(ariaDescribedBy) {
51 this.$.input.textarea.setAttribute('aria-describedby', ariaDescribedBy); 50 this.$.input.textarea.setAttribute('aria-describedby', ariaDescribedBy);
52 } 51 }
53 }); 52 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698