1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:17:34 +00:00

LibWeb: Implement the (string) replace all operations for Node

This commit is contained in:
Luke Wilde 2021-09-06 01:25:58 +01:00 committed by Andreas Kling
parent 67c73ddd59
commit d36838d050
2 changed files with 30 additions and 0 deletions

View file

@ -182,6 +182,9 @@ public:
i32 id() const { return m_id; }
static Node* from_id(i32 node_id);
void replace_all(RefPtr<Node>);
void string_replace_all(String const&);
protected:
Node(Document&, NodeType);