MutationRecord.idl 539 B

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