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

LibWeb: Implement CharacterData.{append,insert,delete}Data

This commit is contained in:
Luke Wilde 2022-07-11 16:23:50 +01:00 committed by Andreas Kling
parent af5b4ae1c4
commit ee719870c8
3 changed files with 27 additions and 0 deletions

View file

@ -7,6 +7,9 @@ interface CharacterData : Node {
readonly attribute unsigned long length;
DOMString substringData(unsigned long offset, unsigned long count);
undefined appendData(DOMString data);
undefined insertData(unsigned long offset, DOMString data);
undefined deleteData(unsigned long offset, unsigned long count);
undefined replaceData(unsigned long offset, unsigned long count, DOMString data);
readonly attribute Element? nextElementSibling;