diff options
Diffstat (limited to 'accessible/jsat/OutputGenerator.jsm')
-rw-r--r-- | accessible/jsat/OutputGenerator.jsm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accessible/jsat/OutputGenerator.jsm b/accessible/jsat/OutputGenerator.jsm index 36b43a5695..24a0769103 100644 --- a/accessible/jsat/OutputGenerator.jsm +++ b/accessible/jsat/OutputGenerator.jsm @@ -786,7 +786,7 @@ this.UtteranceGenerator = { // jshint ignore:line // This is because we expose the checked information on the node itself. // XXX: this means the checked state is always appended to the end, // regardless of the utterance ordering preference. - if ((Utils.AndroidSdkVersion < 16 || Utils.MozBuildApp === 'browser') && + if (Utils.MozBuildApp === 'browser' && aState.contains(States.CHECKABLE)) { let checked = aState.contains(States.CHECKED); let statetr; |