mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
Mutation Observer API
This commit is contained in:
parent
fa251ec96b
commit
3ca89204ff
15 changed files with 432 additions and 180 deletions
|
@ -12,13 +12,13 @@ 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;
|
||||
[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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue