| OLD | NEW |
| 1 diff --git a/components-chromium/font-roboto/roboto.html b/components-chromium/f
ont-roboto/roboto.html | 1 diff --git a/components-chromium/font-roboto/roboto.html b/components-chromium/f
ont-roboto/roboto.html |
| 2 index 7a24999..4eefcba 100644 | 2 index 7a24999..4eefcba 100644 |
| 3 --- a/components-chromium/font-roboto/roboto.html | 3 --- a/components-chromium/font-roboto/roboto.html |
| 4 +++ b/components-chromium/font-roboto/roboto.html | 4 +++ b/components-chromium/font-roboto/roboto.html |
| 5 @@ -7,5 +7,4 @@ The complete set of contributors may be found at http://polymer.
github.io/CONTRI | 5 @@ -7,5 +7,4 @@ The complete set of contributors may be found at http://polymer.
github.io/CONTRI |
| 6 Code distributed by Google as part of the polymer project is also | 6 Code distributed by Google as part of the polymer project is also |
| 7 subject to an additional IP rights grant found at http://polymer.github.io/PATE
NTS.txt | 7 subject to an additional IP rights grant found at http://polymer.github.io/PATE
NTS.txt |
| 8 --> | 8 --> |
| 9 -<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400
,300,300italic,400italic,500,500italic,700,700italic"> | 9 -<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400
,300,300italic,400italic,500,500italic,700,700italic"> |
| 10 -<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mon
o:400,700"> | 10 -<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Mon
o:400,700"> |
| 11 +<link rel="stylesheet" href="chrome://resources/css/roboto.css"> | 11 +<link rel="stylesheet" href="chrome://resources/css/roboto.css"> |
| 12 diff --git a/components-chromium/paper-input/paper-textarea-extracted.js b/compo
nents-chromium/paper-input/paper-textarea-extracted.js |
| 13 index 78a2a9ec621c..8b776dd790ea 100644 |
| 14 --- a/components-chromium/paper-input/paper-textarea-extracted.js |
| 15 +++ b/components-chromium/paper-input/paper-textarea-extracted.js |
| 16 @@ -43,8 +43,8 @@ Polymer({ |
| 17 } |
| 18 }, |
| 19 |
| 20 - _ariaLabelledByChanged: function(ariaLabelledBy) { |
| 21 - this.$.input.textarea.setAttribute('aria-labelledby', ariaLabelledBy); |
| 22 + _ariaLabelledByChanged: function() { |
| 23 + this.$.input.textarea.setAttribute('aria-label', this.label); |
| 24 }, |
| 25 |
| 26 _ariaDescribedByChanged: function(ariaDescribedBy) { |
| OLD | NEW |