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

LibWeb+WebContent: Add query for hovered DOM node to OOPWV

This is needed for the "Inspect Element" context menu action.
This commit is contained in:
Sam Atkins 2021-08-27 17:33:10 +01:00 committed by Andreas Kling
parent 3b07f49d48
commit 1ccf10789e
5 changed files with 18 additions and 0 deletions

View file

@ -50,6 +50,7 @@ private:
virtual void get_source() override;
virtual void inspect_dom_tree() override;
virtual Messages::WebContentServer::InspectDomNodeResponse inspect_dom_node(i32) override;
virtual Messages::WebContentServer::GetHoveredNodeIdResponse get_hovered_node_id() override;
virtual void js_console_initialize() override;
virtual void js_console_input(String const&) override;
virtual void run_javascript(String const&) override;