mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-12 02:30:30 +09:00
Browser+WebContent+WebDriver: Move Find Elements From Element to WC
This also lets us remove the element location strategy and some WebContent IPC from Browser/LibWebView now that they are unused.
This commit is contained in:
parent
5a750dc58c
commit
560da56a1d
Notes:
sideshowbarker
2024-07-17 04:37:48 +09:00
Author: https://github.com/trflynn89
Commit: 560da56a1d
Pull-request: https://github.com/SerenityOS/serenity/pull/15998
Reviewed-by: https://github.com/linusg
16 changed files with 31 additions and 271 deletions
|
@ -554,16 +554,6 @@ OrderedHashMap<String, String> OutOfProcessWebView::get_session_storage_entries(
|
|||
return client().get_session_storage_entries();
|
||||
}
|
||||
|
||||
Optional<i32> OutOfProcessWebView::get_document_element()
|
||||
{
|
||||
return client().get_document_element();
|
||||
}
|
||||
|
||||
Optional<Vector<i32>> OutOfProcessWebView::query_selector_all(i32 start_node_id, String const& selector)
|
||||
{
|
||||
return client().query_selector_all(start_node_id, selector);
|
||||
}
|
||||
|
||||
void OutOfProcessWebView::scroll_element_into_view(i32 element_id)
|
||||
{
|
||||
return client().scroll_element_into_view(element_id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue