From 3af3799bbc2849fddc3b51dcee67ce3c9f29e0fe Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 11 Mar 2025 19:25:57 -0400 Subject: [PATCH] WebDriver: Temporarily disable site isolation We will need to update WebDriver to handle the switch of WebContent processes. --- Services/WebDriver/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Services/WebDriver/main.cpp b/Services/WebDriver/main.cpp index 1701d49d002..a17316bd6f8 100644 --- a/Services/WebDriver/main.cpp +++ b/Services/WebDriver/main.cpp @@ -56,6 +56,9 @@ static Vector create_arguments(ByteString const& socket_path, bool f if (debug_process.has_value()) arguments.append(ByteString::formatted("--debug-process={}", debug_process.value())); + // FIXME: WebDriver does not yet handle the WebContent process switch brought by site isolation. + arguments.append("--disable-site-isolation"sv); + arguments.append("about:blank"sv); return arguments; }