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

View File

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