From 549260d31149a6880975c40fa7cb56bb524caa1a Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 28 May 2023 21:08:57 +0200 Subject: [PATCH] headless-browser: Disable content filtering when running tests URL filtering was taking up a huge amount of time when burning through the tests. We're not gonna have a bunch of ads to block in our local tests, so let's just turn it off when running them. --- Userland/Utilities/headless-browser.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Userland/Utilities/headless-browser.cpp b/Userland/Utilities/headless-browser.cpp index e203c2b723..b28880108e 100644 --- a/Userland/Utilities/headless-browser.cpp +++ b/Userland/Utilities/headless-browser.cpp @@ -86,6 +86,11 @@ public: return String::from_deprecated_string(client().dump_text()); } + void clear_content_filters() + { + client().async_set_content_filters({}); + } + private: HeadlessWebContentView() = default; @@ -315,6 +320,8 @@ static ErrorOr collect_tests(Vector& tests, StringView path, StringV static ErrorOr run_tests(HeadlessWebContentView& view, StringView test_root_path) { + view.clear_content_filters(); + Vector tests; TRY(collect_tests(tests, TRY(String::formatted("{}/Layout", test_root_path)), "."sv, TestMode::Layout)); TRY(collect_tests(tests, TRY(String::formatted("{}/Text", test_root_path)), "."sv, TestMode::Text));