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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/iron-autogrow-textarea/iron-autogrow-textarea.html

Issue 1287713002: [MD settings] merge polymer 1.0.11; hack for settings checkbox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 @license 2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><html><head><link rel="import" href="../polymer/polymer.html"> 9 --><html><head><link rel="import" href="../polymer/polymer.html">
10 <link rel="import" href="../iron-behaviors/iron-control-state.html"> 10 <link rel="import" href="../iron-behaviors/iron-control-state.html">
11 <link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html"> 11 <link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html">
12 <link rel="import" href="../iron-validatable-behavior/iron-validatable-behavior. html"> 12 <link rel="import" href="../iron-validatable-behavior/iron-validatable-behavior. html">
13 <link rel="import" href="../iron-form-element-behavior/iron-form-element-behavio r.html"> 13 <link rel="import" href="../iron-form-element-behavior/iron-form-element-behavio r.html">
14 14
15 <!-- 15 <!--
16 `iron-autogrow-textarea` is an element containing a textarea that grows in heigh t as more 16 `iron-autogrow-textarea` is an element containing a textarea that grows in heigh t as more
17 lines of input are entered. Unless an explicit height or the `maxRows` property is set, it will 17 lines of input are entered. Unless an explicit height or the `maxRows` property is set, it will
18 never scroll. 18 never scroll.
19 19
20 Example: 20 Example:
21 21
22 <iron-autogrow-textarea id="a1"> 22 <iron-autogrow-textarea></iron-autogrow-textarea>
23 <textarea id="t1"></textarea>
24 </iron-autogrow-textarea>
25 23
26 Because the `textarea`'s `value` property is not observable, you should use 24 Because the `textarea`'s `value` property is not observable, you should use
27 this element's `bind-value` instead for imperative updates. 25 this element's `bind-value` instead for imperative updates.
28 26
29 @group Iron Elements 27 @group Iron Elements
30 @hero hero.svg 28 @hero hero.svg
31 @demo demo/index.html 29 @demo demo/index.html
32 --> 30 -->
33 31
34 </head><body><dom-module id="iron-autogrow-textarea"> 32 </head><body><dom-module id="iron-autogrow-textarea">
(...skipping 19 matching lines...) Expand all
54 outline: none; 52 outline: none;
55 border: none; 53 border: none;
56 resize: none; 54 resize: none;
57 background: inherit; 55 background: inherit;
58 color: inherit; 56 color: inherit;
59 /* see comments in template */ 57 /* see comments in template */
60 width: 100%; 58 width: 100%;
61 height: 100%; 59 height: 100%;
62 font-size: inherit; 60 font-size: inherit;
63 font-family: inherit; 61 font-family: inherit;
62 line-height: inherit;
64 } 63 }
65 64
66 ::content textarea:invalid { 65 ::content textarea:invalid {
67 box-shadow: none; 66 box-shadow: none;
68 } 67 }
69 68
70 </style> 69 </style>
71 <template> 70 <template>
72 <!-- the mirror sizes the input/textarea so it grows with typing --> 71 <!-- the mirror sizes the input/textarea so it grows with typing -->
73 <div id="mirror" class="mirror-text" aria-hidden="true">&nbsp;</div> 72 <div id="mirror" class="mirror-text" aria-hidden="true">&nbsp;</div>
74 73
75 <!-- size the input/textarea with a div, because the textarea has intrinsic size in ff --> 74 <!-- size the input/textarea with a div, because the textarea has intrinsic size in ff -->
76 <div class="textarea-container fit"> 75 <div class="textarea-container fit">
77 <textarea id="textarea" autocomplete$="[[autocomplete]]" autofocus$="[[aut ofocus]]" inputmode$="[[inputmode]]" placeholder$="[[placeholder]]" readonly$="[ [readonly]]" required$="[[required]]" rows$="[[rows]]" maxlength$="[[maxlength]] "></textarea> 76 <textarea id="textarea" autocomplete$="[[autocomplete]]" autofocus$="[[aut ofocus]]" inputmode$="[[inputmode]]" placeholder$="[[placeholder]]" readonly$="[ [readonly]]" required$="[[required]]" rows$="[[rows]]" maxlength$="[[maxlength]] "></textarea>
78 </div> 77 </div>
79 </template> 78 </template>
80 </dom-module> 79 </dom-module>
81 80
82 <script src="iron-autogrow-textarea-extracted.js"></script></body></html> 81 <script src="iron-autogrow-textarea-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698