LibWeb: Rename internals.signalTextTestIsDone() to signalTestIsDone()

In upcoming change this function will be used for ref-tests as well.
This commit is contained in:
Aliaksandr Kalenik 2025-03-18 17:37:32 +01:00 committed by Jelle Raaijmakers
commit 394073f611
Notes: github-actions[bot] 2025-03-18 19:11:00 +00:00
20 changed files with 30 additions and 30 deletions

View file

@ -130,7 +130,7 @@ static ErrorOr<void> collect_crash_tests(Application const& app, Vector<Test>& t
static void clear_test_callbacks(HeadlessWebView& view)
{
view.on_load_finish = {};
view.on_text_test_finish = {};
view.on_test_finish = {};
view.on_web_content_crashed = {};
}
@ -138,7 +138,7 @@ void run_dump_test(HeadlessWebView& view, Test& test, URL::URL const& url, int t
{
auto timer = Core::Timer::create_single_shot(timeout_in_milliseconds, [&view, &test]() {
view.on_load_finish = {};
view.on_text_test_finish = {};
view.on_test_finish = {};
view.on_set_test_timeout = {};
view.reset_zoom();
@ -255,7 +255,7 @@ void run_dump_test(HeadlessWebView& view, Test& test, URL::URL const& url, int t
}
};
view.on_text_test_finish = [&test, on_test_complete](auto const& text) {
view.on_test_finish = [&test, on_test_complete](auto const& text) {
test.text = text;
test.did_finish_test = true;
@ -290,7 +290,7 @@ static void run_ref_test(HeadlessWebView& view, Test& test, URL::URL const& url,
{
auto timer = Core::Timer::create_single_shot(timeout_in_milliseconds, [&view, &test]() {
view.on_load_finish = {};
view.on_text_test_finish = {};
view.on_test_finish = {};
view.on_set_test_timeout = {};
view.reset_zoom();
@ -364,7 +364,7 @@ static void run_ref_test(HeadlessWebView& view, Test& test, URL::URL const& url,
}
};
view.on_text_test_finish = [&](auto const&) {
view.on_test_finish = [&](auto const&) {
dbgln("Unexpected text test finished during ref test for {}", url);
};
@ -398,7 +398,7 @@ static void run_test(HeadlessWebView& view, Test& test, Application& app)
});
};
view.on_text_test_finish = {};
view.on_test_finish = {};
promise->when_resolved([&view, &test, &app](auto) {
auto url = URL::create_with_file_scheme(MUST(FileSystem::real_path(test.input_path)));