mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:05:06 +00:00
12 lines
383 B
Text
12 lines
383 B
Text
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();
|
|
|
|
};
|