diff options
author | dubroy@chromium.org <dubroy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-05 22:12:24 +0000 |
---|---|---|
committer | dubroy@chromium.org <dubroy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-05 22:12:24 +0000 |
commit | 996bc57c1de929e1476fa5d25b28127b5cb7c59e (patch) | |
tree | 82286158bda9ed7093098546219cc0989081f6e0 /chrome/browser/resources/history.js | |
parent | eec0b33ca84a4951c0a92b02b6ed0dbf95db8c1a (diff) | |
download | chromium_src-996bc57c1de929e1476fa5d25b28127b5cb7c59e.zip chromium_src-996bc57c1de929e1476fa5d25b28127b5cb7c59e.tar.gz chromium_src-996bc57c1de929e1476fa5d25b28127b5cb7c59e.tar.bz2 |
History: Fix regression - unable to remove entries from search results.
In the switchover from history2, the ability to select multiple history search results
(using the checkboxes) was lost. This CL restores that ability, and fixes some style
issues with the search results page.
BUG=106394
TEST=Manual: open chrome://history, do a search, and ensure that you can select and
delete multiple items.
Review URL: http://codereview.chromium.org/8807001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113044 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/history.js')
-rw-r--r-- | chrome/browser/resources/history.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/history.js b/chrome/browser/resources/history.js index 688ee79..77db2a7 100644 --- a/chrome/browser/resources/history.js +++ b/chrome/browser/resources/history.js @@ -163,7 +163,7 @@ Page.prototype.getResultDOM = function(searchResultFlag) { node.appendChild(entryBox); if (searchResultFlag) { - time.textContent = this.dateShort; + time.appendChild(document.createTextNode(this.dateShort)); var snippet = createElementWithClassName('div', 'snippet'); this.addHighlightedText_(snippet, this.snippet_, |