mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
10 lines
221 B
Plaintext
10 lines
221 B
Plaintext
interface CharacterData : Node {
|
|
|
|
attribute DOMString data;
|
|
readonly attribute unsigned long length;
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
readonly attribute Element? previousElementSibling;
|
|
|
|
}
|