WebDriver: Disable scrollbar painting when launching the browser

This commit is contained in:
Tim Ledbetter 2024-12-17 14:07:21 +00:00 committed by Sam Atkins
parent dd819d1dea
commit 731c2365b6
Notes: github-actions[bot] 2025-01-15 12:35:00 +00:00

View file

@ -49,6 +49,7 @@ static Vector<ByteString> create_arguments(ByteString const& socket_path, bool f
arguments.append("--allow-popups"sv); arguments.append("--allow-popups"sv);
arguments.append("--force-new-process"sv); arguments.append("--force-new-process"sv);
arguments.append("--enable-autoplay"sv); arguments.append("--enable-autoplay"sv);
arguments.append("--disable-scrollbar-painting"sv);
if (force_cpu_painting) if (force_cpu_painting)
arguments.append("--force-cpu-painting"sv); arguments.append("--force-cpu-painting"sv);