Bug 1226487 - Don't use the blocklist for the e10s a11y check on beta; instead, block everything. r=jmathies

This commit is contained in:
Felipe Gomes 2015-11-26 14:59:08 -02:00
parent 068ff4e157
commit dabf19b8e3

View File

@ -3377,7 +3377,7 @@ var E10SUINotification = {
var E10SAccessibilityCheck = {
init: function() {
Services.obs.addObserver(this, "a11y-init-or-shutdown", true);
if (Services.appinfo.accessibilityIsBlacklistedForE10S) {
if (Services.appinfo.accessibilityEnabled) {
this._showE10sAccessibilityWarning();
}
},
@ -3386,8 +3386,7 @@ var E10SAccessibilityCheck = {
observe: function(subject, topic, data) {
if (topic == "a11y-init-or-shutdown"
&& data == "1" &&
Services.appinfo.accessibilityIsBlacklistedForE10S) {
&& data == "1") {
this._showE10sAccessibilityWarning();
}
},