Index: chrome/browser/resources/history.js |
=================================================================== |
--- chrome/browser/resources/history.js (revision 86705) |
+++ chrome/browser/resources/history.js (working copy) |
@@ -1037,3 +1037,14 @@ |
setTimeout(deleteNextInQueue, 500); |
} |
+// Add handlers to HTML elements. |
+document.body.onload = load; |
+$('history-section').onclick = function () { |
+ setSearch(''); |
+ return false; |
+}; |
+$('search-form').onsubmit = function () { |
+ setSearch(this.term.value); |
+ return false; |
+} |
+ |