Bug 1758540 - Pref on accessibility cache in Android. r=morgan

Differential Revision: https://phabricator.services.mozilla.com/D141638
This commit is contained in:
Eitan Isaacson 2022-03-29 20:12:25 +00:00
parent f0700c2519
commit 9ad7f135df
2 changed files with 4 additions and 6 deletions

View File

@ -1298,9 +1298,6 @@ class AccessibilityTest : BaseSessionTest() {
} }
@Test fun testRemoteAccessibilityFocusIframe() { @Test fun testRemoteAccessibilityFocusIframe() {
// TODO: Bug 1758540
assumeThat(sessionRule.env.isFission, equalTo(false))
testAccessibilityFocusIframe(REMOTE_IFRAME); testAccessibilityFocusIframe(REMOTE_IFRAME);
} }
@ -1334,9 +1331,6 @@ class AccessibilityTest : BaseSessionTest() {
@Setting(key = Setting.Key.FULL_ACCESSIBILITY_TREE, value = "true") @Setting(key = Setting.Key.FULL_ACCESSIBILITY_TREE, value = "true")
@Test fun testRemoteIframeTree() { @Test fun testRemoteIframeTree() {
// TODO: Bug 1758540
assumeThat(sessionRule.env.isFission, equalTo(false))
testAccessibilityFocusIframe(REMOTE_IFRAME); testAccessibilityFocusIframe(REMOTE_IFRAME);
} }

View File

@ -221,7 +221,11 @@
# the parent process. # the parent process.
- name: accessibility.cache.enabled - name: accessibility.cache.enabled
type: bool type: bool
#ifdef ANDROID
value: true
#else
value: false value: false
#endif
mirror: once mirror: once
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------