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 /layout | |
parent | 282b791acb826de9b537fce88bf49472d8e19977 (diff) | |
download | uxp-90773547e74b5c03a5bb60b9c156f987c73b3dcc.tar.gz |
Issue #1360 - Part 2: Update tests for changed preferences.
Diffstat (limited to 'layout')
-rw-r--r-- | layout/base/crashtests/crashtests.list | 2 | ||||
-rw-r--r-- | layout/tools/reftest/reftestcommandline.py | 3 | ||||
-rw-r--r-- | layout/tools/reftest/runreftest.py | 5 |
3 files changed, 3 insertions, 7 deletions
diff --git a/layout/base/crashtests/crashtests.list b/layout/base/crashtests/crashtests.list index e2cb99e04f..6ded4ff3f2 100644 --- a/layout/base/crashtests/crashtests.list +++ b/layout/base/crashtests/crashtests.list @@ -448,7 +448,7 @@ load 876092.html load 876221.html load 897852.html asserts(4-6) asserts-if(Android&&!asyncPan,2) load 898913.html # bug 847368 -pref(layers.acceleration.disabled,true) pref(layers.force-active,true) load 919434.html +pref(layers.acceleration.enabled,false) pref(layers.force-active,true) load 919434.html load 926728.html load 930381.html load 931450.html diff --git a/layout/tools/reftest/reftestcommandline.py b/layout/tools/reftest/reftestcommandline.py index da76fbd9a7..f983be528d 100644 --- a/layout/tools/reftest/reftestcommandline.py +++ b/layout/tools/reftest/reftestcommandline.py @@ -323,7 +323,8 @@ class DesktopArgumentsParser(ReftestArgumentsParser): def _prefs_gpu(self): if mozinfo.os != "win": - return ["layers.acceleration.force-enabled=true"] + return ["layers.acceleration.enabled=true", + "layers.acceleration.force=true"] return [] def validate(self, options, reftest): diff --git a/layout/tools/reftest/runreftest.py b/layout/tools/reftest/runreftest.py index 7845903bd3..7061b16ca5 100644 --- a/layout/tools/reftest/runreftest.py +++ b/layout/tools/reftest/runreftest.py @@ -287,11 +287,6 @@ class RefTest(object): prefs['browser.tabs.remote.autostart'] = True prefs['extensions.e10sBlocksEnabling'] = False - # Bug 1262954: For winXP + e10s disable acceleration - if platform.system() in ("Windows", "Microsoft") and \ - '5.1' in platform.version() and options.e10s: - prefs['layers.acceleration.disabled'] = True - # Bug 1300355: Disable canvas cache for win7 as it uses # too much memory and causes OOMs. if platform.system() in ("Windows", "Microsoft") and \ |