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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-input/paper-input.html

Issue 1351623008: MD Settings: Languages model for language pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SingletonPrefs
Patch Set: Created 5 years, 3 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-input/iron-input.html"> 10 <link rel="import" href="../iron-input/iron-input.html">
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 color: var(--paper-input-container-color, --secondary-text-color); 71 color: var(--paper-input-container-color, --secondary-text-color);
72 } 72 }
73 </style> 73 </style>
74 74
75 <paper-input-container no-label-float="[[noLabelFloat]]" always-float-label= "[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[a utoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]"> 75 <paper-input-container no-label-float="[[noLabelFloat]]" always-float-label= "[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[a utoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]">
76 76
77 <content select="[prefix]"></content> 77 <content select="[prefix]"></content>
78 78
79 <label hidden$="[[!label]]">[[label]]</label> 79 <label hidden$="[[!label]]">[[label]]</label>
80 80
81 <input is="iron-input" id="input" aria-labelledby$="[[_ariaLabelledBy]]" a ria-describedby$="[[_ariaDescribedBy]]" disabled$="[[disabled]]" bind-value="{{v alue}}" invalid="{{invalid}}" prevent-invalid-input="[[preventInvalidInput]]" al lowed-pattern="[[allowedPattern]]" validator="[[validator]]" type$="[[type]]" pa ttern$="[[pattern]]" required$="[[required]]" autocomplete$="[[autocomplete]]" a utofocus$="[[autofocus]]" inputmode$="[[inputmode]]" minlength$="[[minlength]]" maxlength$="[[maxlength]]" min$="[[min]]" max$="[[max]]" step$="[[step]]" name$= "[[name]]" placeholder$="[[placeholder]]" readonly$="[[readonly]]" list$="[[list ]]" size$="[[size]]" autocapitalize$="[[autocapitalize]]" autocorrect$="[[autoco rrect]]"> 81 <input is="iron-input" id="input" aria-labelledby$="[[_ariaLabelledBy]]" a ria-describedby$="[[_ariaDescribedBy]]" disabled$="[[disabled]]" bind-value="{{v alue}}" invalid="{{invalid}}" prevent-invalid-input="[[preventInvalidInput]]" al lowed-pattern="[[allowedPattern]]" validator="[[validator]]" type$="[[type]]" pa ttern$="[[pattern]]" required$="[[required]]" autocomplete$="[[autocomplete]]" a utofocus$="[[autofocus]]" inputmode$="[[inputmode]]" minlength$="[[minlength]]" maxlength$="[[maxlength]]" min$="[[min]]" max$="[[max]]" step$="[[step]]" name$= "[[name]]" placeholder$="[[placeholder]]" readonly$="[[readonly]]" list$="[[list ]]" size$="[[size]]" autocapitalize$="[[autocapitalize]]" autocorrect$="[[autoco rrect]]" on-change="_onChange">
82 82
83 <content select="[suffix]"></content> 83 <content select="[suffix]"></content>
84 84
85 <template is="dom-if" if="[[errorMessage]]"> 85 <template is="dom-if" if="[[errorMessage]]">
86 <paper-input-error>[[errorMessage]]</paper-input-error> 86 <paper-input-error>[[errorMessage]]</paper-input-error>
87 </template> 87 </template>
88 88
89 <template is="dom-if" if="[[charCounter]]"> 89 <template is="dom-if" if="[[charCounter]]">
90 <paper-input-char-counter></paper-input-char-counter> 90 <paper-input-char-counter></paper-input-char-counter>
91 </template> 91 </template>
92 92
93 </paper-input-container> 93 </paper-input-container>
94 94
95 </template> 95 </template>
96 </dom-module> 96 </dom-module>
97 97
98 <script src="paper-input-extracted.js"></script></body></html> 98 <script src="paper-input-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698