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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/msgs.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/msgs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/msgs.js b/chrome/browser/resources/chromeos/chromevox/common/msgs.js
index 98f0995a816cbae8056cb2cd9c5f4c45925ee471..afb7720ac8a797d3f1d2e203563e42c0fdc5cbf0 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/msgs.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/msgs.js
@@ -152,12 +152,12 @@ Msgs.Untranslated = {
ROLE_OPTION: ' ',
/** Braille of element with the ARIA role option. */
ROLE_OPTION_BRL: ' ',
- /** Braille of element with the ARIA attribute aria-checked=true. */
- ARIA_CHECKED_TRUE_BRL: '(x)',
- /** Braille of element with the ARIA attribute aria-checked=false. */
- ARIA_CHECKED_FALSE_BRL: '( )',
- /** Braille of element with the ARIA attribute aria-checked=mixed. */
- ARIA_CHECKED_MIXED_BRL: '(-)',
+ /** Braille of element that is checked. */
+ CHECKED_TRUE_BRL: '(x)',
+ /** Braille of element that is unchecked. */
+ CHECKED_FALSE_BRL: '( )',
+ /** Braille of element where the checked state is mixed or indeterminate. */
+ CHECKED_MIXED_BRL: '(-)',
/** Braille of element with the ARIA attribute aria-disabled=true. */
ARIA_DISABLED_TRUE_BRL: 'xx',
/** Braille of element with the ARIA attribute aria-expanded=true. */

Powered by Google App Engine
This is Rietveld 408576698