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

Side by Side Diff: ui/webui/resources/cr_elements/cr_input/cr_input.html

Issue 918913002: Add a <cr-input> element to cr_elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a license header to cr_input.css Created 5 years, 9 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
(Empty)
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/paper-input/paper-input-deco rator.html">
3 <link rel="import" href="chrome://resources/polymer/core-input/core-input.html">
4 <link rel="import" href="chrome://resources/cr_elements/cr_events/cr_events.html ">
5
6 <polymer-element name="cr-input">
7 <template>
8 <link rel="stylesheet" href="cr_input.css">
9 <cr-events id="events"></cr-events>
10
11 <!-- TODO(jlklein): Use 'autoValidate' instead of isInvalid binding when
12 updated to 0.5.4. -->
13 <paper-input-decorator id="decorator" label="{{label}}"
14 floatingLabel="{{floatingLabel}}" value="{{value}}"
15 disabled?="{{disabled}}" error="{{error}}"
16 isInvalid="{{!$.input.validity.valid}}">
17 <input is="core-input" id="input" value="{{value}}"
18 committedValue="{{committedValue}}" disabled?="{{disabled}}"
19 required?="{{required}}" type="{{type}}">
20 </paper-input-decorator>
21 </template>
22 <script src="cr_input.js"></script>
23 </polymer-element>
OLDNEW
« no previous file with comments | « ui/webui/resources/cr_elements/cr_input/cr_input.css ('k') | ui/webui/resources/cr_elements/cr_input/cr_input.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698