diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /testing/web-platform/mach_commands.py | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/mach_commands.py')
-rw-r--r-- | testing/web-platform/mach_commands.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/testing/web-platform/mach_commands.py b/testing/web-platform/mach_commands.py index b0943e365e..63455c0b71 100644 --- a/testing/web-platform/mach_commands.py +++ b/testing/web-platform/mach_commands.py @@ -111,7 +111,6 @@ class WebPlatformTestsRunnerSetup(MozbuildObject): def kwargs_firefox(self, kwargs): """Setup kwargs specific to running Firefox and other gecko browsers""" - import mozinfo from wptrunner import wptcommandline kwargs = self.kwargs_common(kwargs) @@ -144,15 +143,6 @@ class WebPlatformTestsRunnerSetup(MozbuildObject): if kwargs["install_fonts"] is None: kwargs["install_fonts"] = True - if ( - kwargs["install_fonts"] - and mozinfo.info["os"] == "win" - and mozinfo.info["os_version"] == "6.1" - ): - # On Windows 7 --install-fonts fails, so fall back to a Firefox-specific codepath - self.setup_fonts_firefox() - kwargs["install_fonts"] = False - if kwargs["preload_browser"] is None: kwargs["preload_browser"] = False |