1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 14:05:06 +00:00
serenity/Userland/Libraries/LibWeb/DOM/CharacterData.idl
2021-09-29 17:56:13 +02:00

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();
};