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

LibWeb+LibWebView+WebContent: Add an Inspector IPC to add DOM attributes

This commit is contained in:
Timothy Flynn 2023-12-05 16:43:14 -05:00 committed by Andreas Kling
parent 2633ea8c79
commit 2cdad0f068
10 changed files with 33 additions and 5 deletions

View file

@ -7,6 +7,7 @@
undefined setDOMNodeText(long nodeID, DOMString text);
undefined setDOMNodeTag(long nodeID, DOMString tag);
undefined addDOMNodeAttributes(long nodeID, NamedNodeMap attributes);
undefined replaceDOMNodeAttribute(long nodeID, DOMString name, NamedNodeMap replacementAttributes);
undefined requestDOMTreeContextMenu(long nodeID, long clientX, long clientY, DOMString type, DOMString? tagOrAttributeName);