diff --git a/accessible/src/jsat/OutputGenerator.jsm b/accessible/src/jsat/OutputGenerator.jsm index 6f1729851233..60d930e86d59 100644 --- a/accessible/src/jsat/OutputGenerator.jsm +++ b/accessible/src/jsat/OutputGenerator.jsm @@ -39,6 +39,8 @@ this.EXPORTED_SYMBOLS = ['UtteranceGenerator', 'BrailleGenerator']; this.OutputGenerator = { + defaultOutputOrder: OUTPUT_DESC_LAST, + /** * Generates output for a PivotContext. * @param {PivotContext} aContext object that generates and caches @@ -383,8 +385,6 @@ this.OutputGenerator = { this.UtteranceGenerator = { __proto__: OutputGenerator, - defaultOutputOrder: OUTPUT_DESC_FIRST, - gActionMap: { jump: 'jumpAction', press: 'pressAction', @@ -612,8 +612,6 @@ this.UtteranceGenerator = { this.BrailleGenerator = { __proto__: OutputGenerator, - defaultOutputOrder: OUTPUT_DESC_LAST, - genForContext: function genForContext(aContext) { let output = OutputGenerator.genForContext.apply(this, arguments); diff --git a/b2g/app/b2g.js b/b2g/app/b2g.js index 9dce566fa537..118fc4e27a55 100644 --- a/b2g/app/b2g.js +++ b/b2g/app/b2g.js @@ -648,6 +648,8 @@ pref("dom.disable_window_open_dialog_feature", true); // Screen reader support pref("accessibility.accessfu.activate", 2); +// Setting for an utterance order (0 - description first, 1 - description last). +pref("accessibility.accessfu.utterance", 1); // Whether to skip images with empty alt text pref("accessibility.accessfu.skip_empty_images", true); diff --git a/mobile/android/app/mobile.js b/mobile/android/app/mobile.js index ee069a3187a2..c0e12fe670c8 100644 --- a/mobile/android/app/mobile.js +++ b/mobile/android/app/mobile.js @@ -657,7 +657,7 @@ pref("ui.scrolling.axis_lock_mode", "standard"); pref("accessibility.accessfu.activate", 2); pref("accessibility.accessfu.quicknav_modes", "Link,Heading,FormElement,ListItem"); // Setting for an utterance order (0 - description first, 1 - description last). -pref("accessibility.accessfu.utterance", 0); +pref("accessibility.accessfu.utterance", 1); // Whether to skip images with empty alt text pref("accessibility.accessfu.skip_empty_images", true);