mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 11:57:19 +02:00
10 lines
248 B
Plaintext
10 lines
248 B
Plaintext
interface CharacterData : Node {
|
|
|
|
[LegacyNullToEmptyString] attribute DOMString data;
|
|
readonly attribute unsigned long length;
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
readonly attribute Element? previousElementSibling;
|
|
|
|
};
|