Index: third_party/polymer/components-chromium/core-input/core-input.html |
diff --git a/third_party/polymer/components-chromium/core-input/core-input.html b/third_party/polymer/components-chromium/core-input/core-input.html |
deleted file mode 100644 |
index 0ce22cb4f3189ad2b43a08b1ffa171cc53bbbcf9..0000000000000000000000000000000000000000 |
--- a/third_party/polymer/components-chromium/core-input/core-input.html |
+++ /dev/null |
@@ -1,57 +0,0 @@ |
-<!-- |
-Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
-This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE |
-The complete set of authors may be found at http://polymer.github.io/AUTHORS |
-The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS |
-Code distributed by Google as part of the polymer project is also |
-subject to an additional IP rights grant found at http://polymer.github.io/PATENTS |
---><!-- |
- |
-`core-input` is an unstyled single-line input field. It extends the native |
-`input` element. |
- |
-Example: |
- |
- <input is="core-input"> |
- |
-The input's value is considered "committed" if the user hits the "enter" key |
-or blurs the input after changing the value. The committed value is stored in |
-the `committedValue` property. |
- |
-If the input has `type = number`, this element will also prevent non-numeric characters |
-from being typed into the text field. |
- |
-Accessibility |
-------------- |
- |
-The following ARIA attributes are set automatically: |
- |
-- `aria-label`: set to the `placeholder` attribute |
-- `aria-disabled`: set if `disabled` is true |
- |
-@group Polymer Core Elements |
-@element core-input |
-@extends input |
-@homepage github.io |
---><html><head><link href="../polymer/polymer.html" rel="import"> |
- |
-<style shim-shadowdom=""> |
- /* FIXME consider theming */ |
- |
- html /deep/ input[is=core-input] { |
- width: 20em; |
- font: inherit; |
- margin: 0; |
- padding: 0; |
- background-color: transparent; |
- border: 0; |
- outline: none; |
- } |
-</style> |
- |
-</head><body><polymer-element name="core-input" extends="input" assetpath=""> |
- |
- |
- |
-</polymer-element> |
-<script charset="utf-8" src="core-input-extracted.js"></script></body></html> |