LibWeb: Add CharacterData.substringData(offset, count)

This commit is contained in:
Andreas Kling 2022-03-21 17:20:42 +01:00
commit e50c7de1b2
Notes: sideshowbarker 2024-07-17 16:59:31 +09:00
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;