summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebView/OutOfProcessWebView.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2023-01-12 20:22:14 +0000
committerAndreas Kling <kling@serenityos.org>2023-01-12 23:39:36 +0100
commit2428e3e6759f40927a1d76daba70593adde7aebc (patch)
tree7e90ddda131b123a2206b3eac6bb6471fa9ae759 /Userland/Libraries/LibWebView/OutOfProcessWebView.h
parentf313708237f5f39ca9774b6a8d394db979078bcd (diff)
downloadserenity-2428e3e6759f40927a1d76daba70593adde7aebc.zip
LibWebView+Ladybird: Move DOM inspection helpers to ViewImplementation
Diffstat (limited to 'Userland/Libraries/LibWebView/OutOfProcessWebView.h')
-rw-r--r--Userland/Libraries/LibWebView/OutOfProcessWebView.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Userland/Libraries/LibWebView/OutOfProcessWebView.h b/Userland/Libraries/LibWebView/OutOfProcessWebView.h
index b817d8f892..c3e694674f 100644
--- a/Userland/Libraries/LibWebView/OutOfProcessWebView.h
+++ b/Userland/Libraries/LibWebView/OutOfProcessWebView.h
@@ -41,18 +41,6 @@ public:
void debug_request(DeprecatedString const& request, DeprecatedString const& argument = {});
- void inspect_dom_tree();
- struct DOMNodeProperties {
- DeprecatedString computed_values_json;
- DeprecatedString resolved_values_json;
- DeprecatedString custom_properties_json;
- DeprecatedString node_box_sizing_json;
- };
- Optional<DOMNodeProperties> inspect_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement>);
- void inspect_accessibility_tree();
- void clear_inspected_dom_node();
- i32 get_hovered_node_id();
-
void js_console_input(DeprecatedString const& js_source);
void js_console_request_messages(i32 start_index);