diff options
-rw-r--r-- | Userland/Utilities/headless-browser.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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<void> collect_tests(Vector<Test>& tests, StringView path, StringV static ErrorOr<int> run_tests(HeadlessWebContentView& view, StringView test_root_path) { + view.clear_content_filters(); + Vector<Test> 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)); |