| Index: ui/webui/resources/cr_elements/v1_0/cr_search_field/cr_search_field.html
|
| diff --git a/ui/webui/resources/cr_elements/v1_0/cr_search_field/cr_search_field.html b/ui/webui/resources/cr_elements/v1_0/cr_search_field/cr_search_field.html
|
| deleted file mode 100644
|
| index f8d203cc80eb0a2b11409b7224547d6aa2eed10e..0000000000000000000000000000000000000000
|
| --- a/ui/webui/resources/cr_elements/v1_0/cr_search_field/cr_search_field.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<link rel="import" href="chrome://resources/html/assert.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/iron-input/iron-input.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper-icon-button.html">
|
| -<link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input-container.html">
|
| -
|
| -<dom-module id="cr-search-field">
|
| - <template>
|
| - <paper-icon-button icon="search" id="search-button"
|
| - disabled$="[[showingSearch_]]" title="[[label]]"
|
| - on-click="toggleShowingSearch_"></paper-icon-button>
|
| - <template is="dom-if" if="[[showingSearch_]]" id="search-container">
|
| - <paper-input-container id="search-term" on-search="onSearchTermSearch_"
|
| - on-keydown="onSearchTermKeydown_" hidden$="[[!showingSearch_]]"
|
| - no-label-float>
|
| - <input is="iron-input" id="search-input" type="search"
|
| - placeholder="[[label]]" incremental>
|
| - <paper-icon-button icon="cancel" id="clear-search"
|
| - on-click="toggleShowingSearch_" title="[[clearLabel]]"
|
| - hidden$="[[!showingSearch_]]"></paper-icon-button>
|
| - </paper-input-container>
|
| - </template>
|
| - </template>
|
| - <link rel="import" type="css" href="cr_search_field.css">
|
| - <script src="cr_search_field.js"></script>
|
| -</dom-module>
|
|
|