mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:44:58 +00:00
LibWeb+LibWebView+WebContent: Add an Inspector IPC to execute JavaScript
The Inspector will have an <input> element to execute user-provided JS. This adds an IDL method and IPC to forward that JS from the Inspector WebView to the Inspector client.
This commit is contained in:
parent
060807e3da
commit
9f374a5d2a
10 changed files with 26 additions and 0 deletions
|
@ -88,6 +88,7 @@ private:
|
|||
virtual void did_insert_clipboard_entry(String const& data, String const& presentation_style, String const& mime_type) override;
|
||||
virtual void inspector_did_load() override;
|
||||
virtual void inspector_did_select_dom_node(i32 node_id, Optional<Web::CSS::Selector::PseudoElement> const& pseudo_element) override;
|
||||
virtual void inspector_did_execute_console_script(String const& script) override;
|
||||
|
||||
ViewImplementation& m_view;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue