diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2021-12-08 11:51:26 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-10 06:52:17 +0100 |
commit | 54bbb97ac647a258752ae210ea0180e1e5f89687 (patch) | |
tree | f6f4dbeb830b4d5128cd301cf487724df4aa23e9 /Userland/Libraries/LibWeb/WebContentClient.h | |
parent | 53df13fed7d645d01ea3412809908fbd4dfe5a8f (diff) | |
download | serenity-54bbb97ac647a258752ae210ea0180e1e5f89687.zip |
Browser+LibWeb+WebContent: Add variables display to Inspector
This allows us to see which custom properties apply to a given element,
which previously wasn't shown.
Diffstat (limited to 'Userland/Libraries/LibWeb/WebContentClient.h')
-rw-r--r-- | Userland/Libraries/LibWeb/WebContentClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/WebContentClient.h b/Userland/Libraries/LibWeb/WebContentClient.h index 4b975d87c5..27dba94eb3 100644 --- a/Userland/Libraries/LibWeb/WebContentClient.h +++ b/Userland/Libraries/LibWeb/WebContentClient.h @@ -51,7 +51,7 @@ private: virtual void did_request_image_context_menu(Gfx::IntPoint const&, AK::URL const&, String const&, unsigned, Gfx::ShareableBitmap const&) override; virtual void did_get_source(AK::URL const&, String const&) override; virtual void did_get_dom_tree(String const&) override; - virtual void did_get_dom_node_properties(i32 node_id, String const& specified_style, String const& computed_style) override; + virtual void did_get_dom_node_properties(i32 node_id, String const& specified_style, String const& computed_style, String const& custom_properties) override; virtual void did_output_js_console_message(i32 message_index) override; virtual void did_get_js_console_messages(i32 start_index, Vector<String> const& message_types, Vector<String> const& messages) override; virtual void did_change_favicon(Gfx::ShareableBitmap const&) override; |