You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
879 B
35 lines
879 B
"use strict";
|
|
|
|
const NodeList = require("../generated/NodeList");
|
|
|
|
// https://dom.spec.whatwg.org/#mutationrecord
|
|
class MutationRecordImpl {
|
|
constructor(args, privateData) {
|
|
this.type = privateData.type;
|
|
this.target = privateData.target;
|
|
this.previousSibling = privateData.previousSibling;
|
|
this.nextSibling = privateData.nextSibling;
|
|
this.attributeName = privateData.attributeName;
|
|
this.attributeNamespace = privateData.attributeNamespace;
|
|
this.oldValue = privateData.oldValue;
|
|
|
|
this._addedNodes = privateData.addedNodes;
|
|
this._removedNodes = privateData.removedNodes;
|
|
}
|
|
|
|
get addedNodes() {
|
|
return NodeList.createImpl([], {
|
|
nodes: this._addedNodes
|
|
});
|
|
}
|
|
|
|
get removedNodes() {
|
|
return NodeList.createImpl([], {
|
|
nodes: this._removedNodes
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
implementation: MutationRecordImpl
|
|
};
|
|
|