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

Unified Diff: third_party/polymer/components/paper-input/paper-input-container.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-input-container.html
diff --git a/third_party/polymer/components/paper-input/paper-input-container.html b/third_party/polymer/components/paper-input/paper-input-container.html
index 297410d31145f018de5e32dc9f54b312e6a5ec87..815a0a36ad1da226995dbb5c6a6111ab8f51ee7f 100644
--- a/third_party/polymer/components/paper-input/paper-input-container.html
+++ b/third_party/polymer/components/paper-input/paper-input-container.html
@@ -110,7 +110,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
@apply(--paper-input-container);
}
- :host[inline] {
+ :host([inline]) {
display: inline-block;
}
@@ -121,6 +121,10 @@ This element is `display:block` by default, but you can set the `inline` attribu
@apply(--paper-input-container-disabled);
}
+ :host([hidden]) {
+ display: none !important;
+ }
+
.floated-label-placeholder {
@apply(--paper-font-caption);
}
@@ -310,7 +314,7 @@ This element is `display:block` by default, but you can set the `inline` attribu
</style>
<template is="dom-if" if="[[!noLabelFloat]]">
- <div class="floated-label-placeholder">&nbsp;</div>
+ <div class="floated-label-placeholder" aria-hidden="true">&nbsp;</div>
</template>
<div class$="[[_computeInputContentClass(noLabelFloat,alwaysFloatLabel,focused,invalid,_inputHasContent)]]">

Powered by Google App Engine
This is Rietveld 408576698