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

Unified Diff: chrome/browser/resources/history.js

Issue 8807001: History: Fix regression - unable to remove entries from search results. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use -webkit-clamp-line instead. Created 9 years 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
« no previous file with comments | « chrome/browser/resources/history.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/history.js
diff --git a/chrome/browser/resources/history.js b/chrome/browser/resources/history.js
index 688ee79d02835db7afc9b937bd51cd4e2dafce38..77db2a7efc8f479fbef7bcf66b107857cba21ea6 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_,
« no previous file with comments | « chrome/browser/resources/history.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698