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

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

Issue 408103002: Added accessible name to bookmark_bar_instructions_view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chromevox now reads static text Created 6 years, 5 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
Index: chrome/browser/resources/chromeos/chromevox/chromevox/background/accessibility_api_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/accessibility_api_handler.js b/chrome/browser/resources/chromeos/chromevox/chromevox/background/accessibility_api_handler.js
index 6b3a520291add8607e7ade6f4d3ff65e61b23f2f..54a3a9ab0b348a5202bbd5dbba689fd09cff9f51 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/accessibility_api_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/accessibility_api_handler.js
@@ -632,6 +632,9 @@ cvox.AccessibilityApiHandler.prototype.describe = function(control, isSelect) {
s += msg('describe_button', [name]);
braille.roleMsg = 'tag_button';
break;
+ case 'statictext':
+ s += control.name;
+ break;
case 'combobox':
case 'listbox':
earcon = cvox.AbstractEarcons.LISTBOX;

Powered by Google App Engine
This is Rietveld 408576698