summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/MutationRecord.idl
blob: 0914177892a101de7109368f530538092b2ecbd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import <DOM/Node.idl>
#import <DOM/NodeList.idl>

[Exposed=Window]
interface MutationRecord {

    readonly attribute DOMString type;
    [SameObject] readonly attribute Node target;
    [SameObject] readonly attribute NodeList addedNodes;
    [SameObject] readonly attribute NodeList removedNodes;
    readonly attribute Node? previousSibling;
    readonly attribute Node? nextSibling;
    readonly attribute DOMString? attributeName;
    readonly attribute DOMString? attributeNamespace;
    readonly attribute DOMString? oldValue;

};