mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
d4b2eb22e1
These circular imports led to the generator silently failing to generate the required methods/properties.
21 lines
739 B
Plaintext
21 lines
739 B
Plaintext
#import <DOM/ChildNode.idl>
|
|
#import <DOM/Element.idl>
|
|
#import <DOM/Node.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#characterdata
|
|
interface CharacterData : Node {
|
|
[LegacyNullToEmptyString] attribute DOMString data;
|
|
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;
|
|
readonly attribute Element? previousElementSibling;
|
|
};
|
|
|
|
CharacterData includes ChildNode;
|