1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:27:45 +00:00

WebContent+Friends: Add get_element_attribute IPC and plumbing

This commit is contained in:
Tobias Christiansen 2022-10-19 16:56:08 +02:00 committed by Linus Groh
parent dfc3a4772b
commit 3f5a620b5d
7 changed files with 30 additions and 0 deletions

View file

@ -39,6 +39,7 @@ endpoint WebContentServer
get_document_element() => (Optional<i32> node_id)
query_selector_all(i32 start_node_id, String selector) => (Optional<Vector<i32>> elements_ids)
get_element_attribute(i32 element_id, String name) => (Optional<String> attribute)
run_javascript(String js_source) =|