| Index: chrome/browser/resources/history/history.js
|
| diff --git a/chrome/browser/resources/history/history.js b/chrome/browser/resources/history/history.js
|
| index bc914c878acae94797c97f52469d048e1467e06f..40bf4d1d913a8e3aa4b69f6b2b9a04db92b5d970 100644
|
| --- a/chrome/browser/resources/history/history.js
|
| +++ b/chrome/browser/resources/history/history.js
|
| @@ -219,8 +219,8 @@ Visit.prototype.addHighlightedText_ = function(node, content, highlightText) {
|
| */
|
| Visit.prototype.getTitleDOM_ = function() {
|
| var node = createElementWithClassName('div', 'title');
|
| - node.style.backgroundImage =
|
| - 'url(chrome://favicon/' + encodeURIForCSS(this.url_) + ')';
|
| + node.style.backgroundImage = url(getFaviconURL(encodeURIForCSS(this.url_)));
|
| + node.style.backgroundSize = '16px';
|
|
|
| var link = document.createElement('a');
|
| link.href = this.url_;
|
|
|