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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/aria_util.js

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 years, 8 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/common/aria_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/aria_util.js b/chrome/browser/resources/chromeos/chromevox/common/aria_util.js
index b73ab77463ba3ee7e2c6d493b44a9a757c368769..435c96865ce470fe1d00bccb9a5c2d5142fd90ac 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/aria_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/aria_util.js
@@ -111,9 +111,9 @@ cvox.AriaUtil.ATTRIBUTE_VALUE_TO_STATUS = [
'list' : 'aria_autocomplete_list',
'both' : 'aria_autocomplete_both'} },
{ name: 'aria-checked', values:
- {'true' : 'aria_checked_true',
- 'false' : 'aria_checked_false',
- 'mixed' : 'aria_checked_mixed'} },
+ {'true' : 'checked_true',
+ 'false' : 'checked_false',
+ 'mixed' : 'checked_mixed'} },
{ name: 'aria-disabled', values:
{'true' : 'aria_disabled_true'} },
{ name: 'aria-expanded', values:

Powered by Google App Engine
This is Rietveld 408576698