diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-09 15:25:23 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-10 13:10:16 +0000 |
commit | 560da56a1df9eebcfb9a900b3f3dec2a65e78e6b (patch) | |
tree | 5193c80ccdbd6851a9ad717be62db46dd3f1f081 /Userland/Services/WebContent/WebContentServer.ipc | |
parent | 5a750dc58cebd46c378772e33668cd53101133ef (diff) | |
download | serenity-560da56a1df9eebcfb9a900b3f3dec2a65e78e6b.zip |
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.
Diffstat (limited to 'Userland/Services/WebContent/WebContentServer.ipc')
-rw-r--r-- | Userland/Services/WebContent/WebContentServer.ipc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Services/WebContent/WebContentServer.ipc b/Userland/Services/WebContent/WebContentServer.ipc index 0381142151..5cb82cf51e 100644 --- a/Userland/Services/WebContent/WebContentServer.ipc +++ b/Userland/Services/WebContent/WebContentServer.ipc @@ -42,8 +42,6 @@ endpoint WebContentServer js_console_input(String js_source) =| js_console_request_messages(i32 start_index) =| - get_document_element() => (Optional<i32> node_id) - query_selector_all(i32 start_node_id, String selector) => (Optional<Vector<i32>> elements_ids) scroll_element_into_view(i32 element_id) => () is_element_selected(i32 element_id) => (bool selected) get_element_attribute(i32 element_id, String name) => (Optional<String> attribute) |