Skip to content

Commit 4c1fd23

Browse files
WeizhongXmoz-wptsync-bot
authored andcommitted
Bug 1879147 [wpt PR 44445] - allow old headless mode for chrome, a=testonly
Automatic update from web-platform-tests allow old headless mode for chrome (#44445) * allow old headless mode for chrome While Wptrunner's '--headless' means the new headless mode, allow passing binary arg '--headless' to chrome directly to enable the old headless mode -- wpt-commits: 09de1c20d1d31f66bb7174c896f0a63fb41b59b4 wpt-pr: 44445
1 parent c5c4e74 commit 4c1fd23

File tree

1 file changed

+2
-1
lines changed
  • testing/web-platform/tests/tools/wptrunner/wptrunner/browsers

1 file changed

+2
-1
lines changed

testing/web-platform/tests/tools/wptrunner/wptrunner/browsers/chrome.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ def executor_kwargs(logger, test_type, test_environment, run_info_data,
147147
# Pass the --headless=new flag to Chrome if WPT's own --headless flag was
148148
# set. '--headless' should always mean the new headless mode, as the old
149149
# headless mode is not used anyway.
150-
if kwargs["headless"] and "--headless=new" not in chrome_options["args"]:
150+
if kwargs["headless"] and ("--headless=new" not in chrome_options["args"] and
151+
"--headless" not in chrome_options["args"]):
151152
chrome_options["args"].append("--headless=new")
152153

153154
if test_type == "wdspec":

0 commit comments

Comments
 (0)