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

Unified Diff: third_party/polymer/components/paper-input/paper-textarea.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/components/paper-input/paper-textarea.html
diff --git a/third_party/polymer/components/paper-input/paper-textarea.html b/third_party/polymer/components/paper-input/paper-textarea.html
index 91800dc86f6154e702e2ae3aeaaf8ebafd9f949b..064efec83dc0c5ddd28aba2ac2b1370a76108692 100644
--- a/third_party/polymer/components/paper-input/paper-textarea.html
+++ b/third_party/polymer/components/paper-input/paper-textarea.html
@@ -39,11 +39,15 @@ style this element.
:host {
display: block;
}
+
+ :host([hidden]) {
+ display: none !important;
+ }
</style>
<paper-input-container no-label-float$="[[noLabelFloat]]" always-float-label="[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[autoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]">
- <label hidden$="[[!label]]">[[label]]</label>
+ <label hidden$="[[!label]]" aria-hidden="true">[[label]]</label>
<iron-autogrow-textarea id="input" class="paper-input-input"
bind-value="{{value}}"

Powered by Google App Engine
This is Rietveld 408576698