From 8da4e0a973daa0e690e4f5fc10fd6fb76ba20728 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Tue, 17 Dec 2024 14:07:21 +0000 Subject: [PATCH] WebDriver: Disable scrollbar painting when launching the browser --- Services/WebDriver/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Services/WebDriver/main.cpp b/Services/WebDriver/main.cpp index 73346998f1b8..1701d49d0026 100644 --- a/Services/WebDriver/main.cpp +++ b/Services/WebDriver/main.cpp @@ -49,6 +49,7 @@ static Vector 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);