summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/resources/new_new_tab.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/resources/new_new_tab.js b/chrome/browser/resources/new_new_tab.js
index bf2b1f1..9e8b859 100644
--- a/chrome/browser/resources/new_new_tab.js
+++ b/chrome/browser/resources/new_new_tab.js
@@ -95,7 +95,7 @@ var apps = {
createElement: function(app) {
var a = document.createElement('a');
- a.textContent = app['name'];
+ a.xtitle = a.textContent = app['name'];
a.href = app['launch_url'];
a.id = app['id'];
a.onclick = apps.handleClick_;