author | Jim Mathies <jmathies@mozilla.com> |
Thu, 02 Nov 2017 12:01:54 -0500 | |
changeset 440659 | 7043cf41cae40f61bbe4476cbdf0f14dd71bf990 |
parent 440658 | 5b1cc7fdfa402533e760f1b4b5fdf9ae9dd9bcbe |
child 440660 | 1fdce3a0396c599ad52749e1650beeb8f455d891 |
push id | 8118 |
push user | ryanvm@gmail.com |
push date | Fri, 03 Nov 2017 00:38:34 +0000 |
treeherder | mozilla-beta@1c336e874ae8 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | felipe |
bugs | 1413599 |
milestone | 58.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/components/nsBrowserGlue.js +++ b/browser/components/nsBrowserGlue.js @@ -2912,19 +2912,21 @@ var JawsScreenReaderVersionCheck = { }, onWindowsRestored() { Services.tm.dispatchToMainThread(() => this._checkVersionAndPrompt()); }, _checkVersionAndPrompt() { // Make sure we only prompt for versions of JAWS we do not - // support and never prompt if e10s is disabled. + // support and never prompt if e10s is disabled or if we're on + // nightly. if (!Services.appinfo.shouldBlockIncompatJaws || - !Services.appinfo.browserTabsRemoteAutostart) { + !Services.appinfo.browserTabsRemoteAutostart || + AppConstants.NIGHTLY_BUILD) { return; } let win = RecentWindow.getMostRecentBrowserWindow(); if (!win || !win.gBrowser || !win.gBrowser.selectedBrowser) { Services.console.logStringMessage( "Content access support for older versions of JAWS is disabled " + "due to compatibility issues with this version of Firefox.");