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

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

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

Powered by Google App Engine
This is Rietveld 408576698