1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

LibWeb: Implement Node.nodeValue DOM attribute

This commit is contained in:
Adam Hodgen 2022-02-18 22:11:43 +00:00 committed by Andreas Kling
parent 929074ddea
commit c6dd8a1f66
3 changed files with 30 additions and 0 deletions

View file

@ -111,6 +111,9 @@ public:
String text_content() const;
void set_text_content(String const&);
String node_value() const;
void set_node_value(String const&);
Document& document() { return *m_document; }
const Document& document() const { return *m_document; }