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

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

Issue 122003002: Show username on password manager list tooltip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert password display on pwd manager tooltip Created 7 years 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/password_manager_list.js
diff --git a/chrome/browser/resources/options/password_manager_list.js b/chrome/browser/resources/options/password_manager_list.js
index 9442dee28a5c1afe69d9a4f7fb7e3c3dc0bedfd8..b1591a0782c00e4a27cfeafc6d13e18ea96c5abb 100644
--- a/chrome/browser/resources/options/password_manager_list.js
+++ b/chrome/browser/resources/options/password_manager_list.js
@@ -56,6 +56,7 @@ cr.define('options.passwordManager', function() {
var usernameLabel = this.ownerDocument.createElement('div');
usernameLabel.className = 'name';
usernameLabel.textContent = this.username;
+ usernameLabel.setAttribute('title', this.username);
James Hawkins 2013/12/29 21:09:17 usernameLabel.title = this.username should suffice
carloschilazo 2013/12/29 21:23:23 Done.
this.contentElement.appendChild(usernameLabel);
// The stored password.
« 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