mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
13 lines
383 B
Plaintext
13 lines
383 B
Plaintext
interface CharacterData : Node {
|
|
|
|
[LegacyNullToEmptyString] attribute DOMString data;
|
|
readonly attribute unsigned long length;
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
readonly attribute Element? previousElementSibling;
|
|
|
|
// FIXME: This should come from a ChildNode mixin
|
|
[CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
|
|
|
|
};
|