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

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

Issue 1187823002: Update Polymer components and re-run reproduce.sh (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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/v1_0/components/paper-input/paper-textarea.html
diff --git a/third_party/polymer/v1_0/components/paper-input/paper-textarea.html b/third_party/polymer/v1_0/components/paper-input/paper-textarea.html
index 0c74edfd4c6c3476d5e89b766ae87e66b5130137..d47a5b5071476f76b42082bc0dc7070dfb08d369 100644
--- a/third_party/polymer/v1_0/components/paper-input/paper-textarea.html
+++ b/third_party/polymer/v1_0/components/paper-input/paper-textarea.html
@@ -35,12 +35,18 @@ style this element.
<dom-module id="paper-textarea">
<template>
- <paper-input-container no-label-float$="[[noLabelFloat]]" auto-validate$="[[autoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]">
+ <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>
<iron-autogrow-textarea id="input" class="paper-input-input"
bind-value="{{value}}"
+ autocomplete$="[[autocomplete]]"
+ autofocus$="[[autofocus]]"
+ inputmode$="[[inputmode]]"
+ name$="[[name]]"
+ placeholder$="[[placeholder]]"
+ readonly$="[[readonly]]"
required$="[[required]]"
maxlength$="[[maxlength]]"></iron-autogrow-textarea>

Powered by Google App Engine
This is Rietveld 408576698