mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 18:47:15 +02:00
10 lines
222 B
Plaintext
10 lines
222 B
Plaintext
interface CharacterData : Node {
|
|
|
|
attribute DOMString data;
|
|
readonly attribute unsigned long length;
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
readonly attribute Element? previousElementSibling;
|
|
|
|
};
|