diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-26 10:28:17 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-26 10:28:17 +0100 |
commit | 90773547e74b5c03a5bb60b9c156f987c73b3dcc (patch) | |
tree | b5f6105a5cb9dff45bb1737a9d6f543a73747ef0 /testing/talos | |
parent | 282b791acb826de9b537fce88bf49472d8e19977 (diff) | |
download | UXP-90773547e74b5c03a5bb60b9c156f987c73b3dcc.tar UXP-90773547e74b5c03a5bb60b9c156f987c73b3dcc.tar.gz UXP-90773547e74b5c03a5bb60b9c156f987c73b3dcc.tar.lz UXP-90773547e74b5c03a5bb60b9c156f987c73b3dcc.tar.xz UXP-90773547e74b5c03a5bb60b9c156f987c73b3dcc.zip |
Issue #1360 - Part 2: Update tests for changed preferences.
Diffstat (limited to 'testing/talos')
-rw-r--r-- | testing/talos/talos/test.py | 4 | ||||
-rw-r--r-- | testing/talos/talos/ttest.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testing/talos/talos/test.py b/testing/talos/talos/test.py index dc1306b8e..6df5835bb 100644 --- a/testing/talos/talos/test.py +++ b/testing/talos/talos/test.py @@ -556,8 +556,8 @@ class basic_compositor_video(PageloaderTest): sps_profile_interval = 1 sps_profile_entries = 2000000 preferences = {'full-screen-api.allow-trusted-requests-only': False, - 'layers.acceleration.force-enabled': False, - 'layers.acceleration.disabled': True, + 'layers.acceleration.force': False, + 'layers.acceleration.enabled': False, 'layout.frame_rate': 0, 'docshell.event_starvation_delay_hint': 1, 'full-screen-api.warning.timeout': 500, diff --git a/testing/talos/talos/ttest.py b/testing/talos/talos/ttest.py index 4a0fcd135..3c57f020d 100644 --- a/testing/talos/talos/ttest.py +++ b/testing/talos/talos/ttest.py @@ -64,7 +64,7 @@ class TTest(object): # Bug 1262954: winxp + e10s, disable hwaccel if self.platform_type == "win_" and browser_config['e10s']: prefs = browser_config['preferences'] - prefs['layers.acceleration.disabled'] = True + prefs['layers.acceleration.enabled'] = False with FFSetup(browser_config, test_config) as setup: return self._runTest(browser_config, test_config, setup) |