1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:47:46 +00:00

LibWeb: Add CharacterData.substringData(offset, count)

This commit is contained in:
Andreas Kling 2022-03-21 17:20:42 +01:00
parent 394cd77467
commit e50c7de1b2
3 changed files with 23 additions and 0 deletions

View file

@ -27,6 +27,8 @@ public:
unsigned length() const { return m_data.length(); }
ExceptionOr<String> substring_data(size_t offset, size_t count) const;
protected:
explicit CharacterData(Document&, NodeType, const String&);