Index: chrome/browser/resources/options/cookies_list.js |
diff --git a/chrome/browser/resources/options/cookies_list.js b/chrome/browser/resources/options/cookies_list.js |
index 62ab57c5f9c76ff3745271cd8d18fec09609a8f0..4904aede01cd1263755ee8ebb3dbd6620a132b69 100644 |
--- a/chrome/browser/resources/options/cookies_list.js |
+++ b/chrome/browser/resources/options/cookies_list.js |
@@ -88,8 +88,8 @@ cr.define('options', function() { |
function addAppInfo(element, appInfo) { |
var img = element.ownerDocument.createElement('img'); |
img.src = 'chrome://extension-icon/' + appInfo.id + '/16/1'; |
- img.title = loadTimeData.getString('label_protected_by_apps') + |
- ' ' + appInfo.name; |
+ element.title = loadTimeData.getString('label_protected_by_apps') + |
+ ' ' + appInfo.name; |
battre
2012/12/01 01:56:00
nit: I think you should move this down after line
|
img.className = 'protecting-app'; |
element.appendChild(img); |
} |