summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/WebContentClient.ipc
diff options
context:
space:
mode:
authorVrins <michiel_678@hotmail.com>2022-02-27 01:38:12 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-08 22:09:52 +0100
commit39a5076f40ab93205d88a5bed4de7d1d4677bdca (patch)
tree804de917658a6440a9c4a459ae7a9f5a0d8e5ca5 /Userland/Services/WebContent/WebContentClient.ipc
parent3b22fd9a9f739b3617e17428e2aad2439453af34 (diff)
downloadserenity-39a5076f40ab93205d88a5bed4de7d1d4677bdca.zip
Browser+LibWeb: Add an Element size preview widget to inspector
This Adds an element size preview widget to the inspector widget in a new tab. This functions similar to chrome and firefox and shows the margin, border, padding, and content size of the selected element in the inspector. The colors for the size preview widget are taken from the chrome browser.
Diffstat (limited to 'Userland/Services/WebContent/WebContentClient.ipc')
-rw-r--r--Userland/Services/WebContent/WebContentClient.ipc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/WebContentClient.ipc b/Userland/Services/WebContent/WebContentClient.ipc
index 82f90abae8..04ab5c4ecf 100644
--- a/Userland/Services/WebContent/WebContentClient.ipc
+++ b/Userland/Services/WebContent/WebContentClient.ipc
@@ -29,7 +29,7 @@ endpoint WebContentClient
did_request_prompt(String message, String default_) => (String response)
did_get_source(URL url, String source) =|
did_get_dom_tree(String dom_tree) =|
- did_get_dom_node_properties(i32 node_id, String specified_style, String computed_style, String custom_properties) =|
+ did_get_dom_node_properties(i32 node_id, String specified_style, String computed_style, String custom_properties, String node_box_sizing_json) =|
did_change_favicon(Gfx::ShareableBitmap favicon) =|
did_request_cookie(URL url, u8 source) => (String cookie)
did_set_cookie(URL url, Web::Cookie::ParsedCookie cookie, u8 source) =|