Chromium Code Reviews| Index: chrome/browser/resources/history.html |
| diff --git a/chrome/browser/resources/history.html b/chrome/browser/resources/history.html |
| index 851601fe87d183c5191f445d4f9791df4a0d2edc..3199846d56e4221df5c2d2914545f8c9121e0adb 100644 |
| --- a/chrome/browser/resources/history.html |
| +++ b/chrome/browser/resources/history.html |
| @@ -5,6 +5,7 @@ |
| <title i18n-content="title"></title> |
| <link rel="icon" href="../../app/theme/history_favicon.png"> |
| <script src="shared/js/local_strings.js"></script> |
| +<script src="shared/js/util.js"></script> |
| <script> |
| /////////////////////////////////////////////////////////////////////////////// |
| // Globals: |
| @@ -162,6 +163,9 @@ Page.prototype.getTitleDOM_ = function() { |
| node.className = 'title'; |
| var link = document.createElement('a'); |
| link.href = this.url_; |
| + |
| + handleFileOrAboutLinkClicks(link); |
|
arv (Not doing code reviews)
2011/01/21 23:07:32
I don't like adding this to every link... more lat
|
| + |
| link.style.backgroundImage = |
| 'url(chrome://favicon/' + encodeURIForCSS(this.url_) + ')'; |
| link.id = "id-" + this.id_; |