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

Unified Diff: chrome/browser/resources/options/cookies_list.js

Issue 11428098: In chrome://settings/cookies dialog I extended hovering tooltip area for cookies which have been se… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698