mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibWeb: Rename internals.signalTextTestIsDone() to signalTestIsDone()
In upcoming change this function will be used for ref-tests as well.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
101a8aef26
commit
394073f611
Notes:
github-actions[bot]
2025-03-18 19:11:00 +00:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/LadybirdBrowser/ladybird/commit/394073f6116 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3989 Reviewed-by: https://github.com/gmta ✅
@@ -103,11 +103,11 @@ void WebContentClient::did_finish_loading(u64 page_id, URL::URL url)
|
||||
}
|
||||
}
|
||||
|
||||
void WebContentClient::did_finish_text_test(u64 page_id, String text)
|
||||
void WebContentClient::did_finish_test(u64 page_id, String text)
|
||||
{
|
||||
if (auto view = view_for_page_id(page_id); view.has_value()) {
|
||||
if (view->on_text_test_finish)
|
||||
view->on_text_test_finish(text);
|
||||
if (view->on_test_finish)
|
||||
view->on_test_finish(text);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user