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:
parent
af5b4ae1c4
commit
ee719870c8
3 changed files with 27 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue