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

Unified Diff: ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.html

Issue 2090513002: MD Search Field: Properly respond to external changes to search value. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweak test Created 4 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_toolbar/cr_toolbar_search_field.html
diff --git a/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.html b/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.html
index b187aff2c54c004d65cf0a3fd7ad31eb878595c8..d3fad815a74221a48dfcf09c4a81a0ea23b741be 100644
--- a/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.html
+++ b/ui/webui/resources/cr_elements/cr_toolbar/cr_toolbar_search_field.html
@@ -107,14 +107,13 @@
tabindex$="[[computeIconTabIndex_(narrow)]]">
</paper-icon-button>
<paper-input-container on-search="onSearchTermSearch"
- on-keydown="onSearchTermKeydown" on-keypress="onSearchTermKeypress_"
- no-label-float>
+ on-keydown="onSearchTermKeydown" no-label-float>
<label id="prompt" for="searchInput">[[label]]</label>
<input is="iron-input" id="searchInput" type="search"
on-blur="onInputBlur_" incremental></input>
</paper-input-container>
<paper-icon-button icon="cr:cancel" id="clearSearch"
- title="[[clearLabel]]" hidden$="[[!hasSearchText]]"
+ title="[[clearLabel]]" hidden$="[[!hasSearchText_]]"
on-tap="hideSearch_">
</paper-icon-button>
</template>

Powered by Google App Engine
This is Rietveld 408576698