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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js

Issue 2760803002: Set limit on maximum width of ChromeVox menus. (Closed)
Patch Set: Rebase Created 3 years, 9 months 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 | « chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
index 5a6ad4e099ea56e1216e008e6a44f69d8595a620..d5b2ff0ce6e658333599d7394056c5241f37843d 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/panel_menu_item.js
@@ -31,6 +31,9 @@ PanelMenuItem = function(
var title = document.createElement('td');
title.className = 'menu-item-title';
title.textContent = menuItemTitle;
+
+ // Tooltip in case the menu item is cut off.
+ title.title = menuItemTitle;
this.element.appendChild(title);
var shortcut = document.createElement('td');
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/cvox2/background/panel.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698