mirror of
https://github.com/RGBCube/serenity
synced 2025-07-10 12:27:35 +00:00

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.
8 lines
204 B
Text
8 lines
204 B
Text
[Exposed=Nobody] interface Inspector {
|
|
|
|
undefined inspectorLoaded();
|
|
undefined inspectDOMNode(long nodeID, optional long pseudoElement);
|
|
|
|
undefined executeConsoleScript(DOMString script);
|
|
|
|
};
|