MutationRecord.idl 596 B

123456789101112131415161718
  1. #import <DOM/Node.idl>
  2. #import <DOM/NodeList.idl>
  3. // https://dom.spec.whatwg.org/#interface-mutationrecord
  4. [Exposed=Window]
  5. interface MutationRecord {
  6. readonly attribute DOMString type;
  7. [SameObject] readonly attribute Node target;
  8. [SameObject] readonly attribute NodeList addedNodes;
  9. [SameObject] readonly attribute NodeList removedNodes;
  10. readonly attribute Node? previousSibling;
  11. readonly attribute Node? nextSibling;
  12. readonly attribute DOMString? attributeName;
  13. readonly attribute DOMString? attributeNamespace;
  14. readonly attribute DOMString? oldValue;
  15. };