CharacterData.idl 383 B

123456789101112
  1. interface CharacterData : Node {
  2. [LegacyNullToEmptyString] attribute DOMString data;
  3. readonly attribute unsigned long length;
  4. readonly attribute Element? nextElementSibling;
  5. readonly attribute Element? previousElementSibling;
  6. // FIXME: This should come from a ChildNode mixin
  7. [CEReactions, Unscopable, ImplementedAs=remove_binding] undefined remove();
  8. };