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

Unified Diff: third_party/polymer/components-chromium/paper-input/paper-input-extracted.js

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: third_party/polymer/components-chromium/paper-input/paper-input-extracted.js
diff --git a/third_party/polymer/components-chromium/paper-input/paper-input-extracted.js b/third_party/polymer/components-chromium/paper-input/paper-input-extracted.js
deleted file mode 100644
index 52cd0bf2db99828fb2a30ded10d162d6fcb38c00..0000000000000000000000000000000000000000
--- a/third_party/polymer/components-chromium/paper-input/paper-input-extracted.js
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
- Polymer('paper-input', {
-
- publish: {
- /**
- * The label for this input. It normally appears as grey text inside
- * the text input and disappears once the user enters text.
- *
- * @attribute label
- * @type string
- * @default ''
- */
- label: '',
-
- /**
- * If true, the label will "float" above the text input once the
- * user enters text instead of disappearing.
- *
- * @attribute floatingLabel
- * @type boolean
- * @default false
- */
- floatingLabel: false,
-
- /**
- * Set to true to style the element as disabled.
- *
- * @attribute disabled
- * @type boolean
- * @default false
- */
- disabled: {value: false, reflect: true},
-
- /**
- * The current value of the input.
- *
- * @attribute value
- * @type String
- * @default ''
- */
- value: '',
-
- /**
- * The most recently committed value of the input.
- *
- * @attribute committedValue
- * @type String
- * @default ''
- */
- committedValue: ''
-
- },
-
- valueChanged: function() {
- this.$.decorator.updateLabelVisibility(this.value);
- },
-
- changeAction: function(e) {
- if (!window.ShadowDOMPolyfill) {
- // re-fire event that does not bubble across shadow roots
- this.fire('change', null, this);
- }
- }
-
- });
-

Powered by Google App Engine
This is Rietveld 408576698