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

Unified Diff: ui/webui/resources/cr_elements/cr_input/cr_input.html

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test 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: ui/webui/resources/cr_elements/cr_input/cr_input.html
diff --git a/ui/webui/resources/cr_elements/cr_input/cr_input.html b/ui/webui/resources/cr_elements/cr_input/cr_input.html
deleted file mode 100644
index 2e8e00822b5b629e0ac1a206ef4c2e9ce6a65e38..0000000000000000000000000000000000000000
--- a/ui/webui/resources/cr_elements/cr_input/cr_input.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
-<link rel="import" href="chrome://resources/polymer/paper-input/paper-input-decorator.html">
-<link rel="import" href="chrome://resources/polymer/core-input/core-input.html">
-<link rel="import" href="chrome://resources/cr_elements/cr_events/cr_events.html">
-
-<polymer-element name="cr-input">
- <template>
- <link rel="stylesheet" href="cr_input.css">
- <cr-events id="events"></cr-events>
-
- <!-- TODO(jlklein): Use 'autoValidate' instead of isInvalid binding when
- updated to 0.5.4. -->
- <paper-input-decorator id="decorator" label="{{label}}"
- floatingLabel="{{floatingLabel}}" value="{{value}}"
- disabled?="{{disabled}}" error="{{error}}"
- isInvalid="{{!$.input.validity.valid}}">
- <input is="core-input" id="input" value="{{value}}"
- committedValue="{{committedValue}}" disabled?="{{disabled}}"
- required?="{{required}}" readonly?="{{readonly}}" type="{{type}}">
- </paper-input-decorator>
- </template>
- <script src="cr_input.js"></script>
-</polymer-element>
« 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