Index: third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea.html |
diff --git a/third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea.html b/third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea.html |
index 7c24a0868eefe831605cdd88f899990837fa7d48..9dae98c31723a3ad111ffd008dd12901909c6191 100644 |
--- a/third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea.html |
+++ b/third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea.html |
@@ -7,8 +7,10 @@ The complete set of contributors may be found at http://polymer.github.io/CONTRI |
Code distributed by Google as part of the polymer project is also |
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
--><html><head><link rel="import" href="../polymer/polymer.html"> |
+<link rel="import" href="../iron-behaviors/iron-control-state.html"> |
<link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html"> |
<link rel="import" href="../iron-validatable-behavior/iron-validatable-behavior.html"> |
+<link rel="import" href="../iron-form-element-behavior/iron-form-element-behavior.html"> |
<!-- |
`iron-autogrow-textarea` is an element containing a textarea that grows in height as more |
@@ -53,6 +55,7 @@ this element's `bind-value` instead for imperative updates. |
border: none; |
resize: none; |
background: inherit; |
+ color: inherit; |
/* see comments in template */ |
width: 100%; |
height: 100%; |
@@ -71,8 +74,9 @@ this element's `bind-value` instead for imperative updates. |
<!-- size the input/textarea with a div, because the textarea has intrinsic size in ff --> |
<div class="textarea-container fit"> |
- <textarea id="textarea" autocomplete$="[[autocomplete]]" autofocus$="[[autofocus]]" inputmode$="[[inputmode]]" name$="[[name]]" placeholder$="[[placeholder]]" readonly$="[[readonly]]" required$="[[required]]" rows$="[[rows]]" maxlength$="[[maxlength]]"></textarea> |
+ <textarea id="textarea" autocomplete$="[[autocomplete]]" autofocus$="[[autofocus]]" inputmode$="[[inputmode]]" placeholder$="[[placeholder]]" readonly$="[[readonly]]" required$="[[required]]" rows$="[[rows]]" maxlength$="[[maxlength]]"></textarea> |
</div> |
</template> |
+</dom-module> |
-</dom-module><script src="iron-autogrow-textarea-extracted.js"></script></body></html> |
+<script src="iron-autogrow-textarea-extracted.js"></script></body></html> |