mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Implement CharacterData.{deleteData, insertData, replaceData}
This commit is contained in:
parent
bb8a037cb2
commit
fd9541357f
3 changed files with 34 additions and 1 deletions
|
@ -17,6 +17,12 @@ interface CharacterData : Node {
|
|||
DOMString substringData(unsigned long offset, unsigned long count);
|
||||
[Throws]
|
||||
void appendData(DOMString data);
|
||||
[Throws]
|
||||
void insertData(unsigned long offset, DOMString data);
|
||||
[Throws]
|
||||
void deleteData(unsigned long offset, unsigned long count);
|
||||
[Throws]
|
||||
void replaceData(unsigned long offset, unsigned long count, DOMString data);
|
||||
};
|
||||
|
||||
//CharacterData implements ChildNode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue