1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +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

@ -6,6 +6,8 @@ interface CharacterData : Node {
[LegacyNullToEmptyString] attribute DOMString data;
readonly attribute unsigned long length;
DOMString substringData(unsigned long offset, unsigned long count);
readonly attribute Element? nextElementSibling;
readonly attribute Element? previousElementSibling;