mirror of
https://github.com/servo/servo
synced 2026-04-30 11:27:28 +02:00
@@ -11,12 +11,12 @@
|
||||
interface MutationObserver {
|
||||
[Throws] constructor(MutationCallback callback);
|
||||
[Throws]
|
||||
void observe(Node target, optional MutationObserverInit options = {});
|
||||
void disconnect();
|
||||
undefined observe(Node target, optional MutationObserverInit options = {});
|
||||
undefined disconnect();
|
||||
sequence<MutationRecord> takeRecords();
|
||||
};
|
||||
|
||||
callback MutationCallback = void (sequence<MutationRecord> mutations, MutationObserver observer);
|
||||
callback MutationCallback = undefined (sequence<MutationRecord> mutations, MutationObserver observer);
|
||||
|
||||
dictionary MutationObserverInit {
|
||||
boolean childList = false;
|
||||
|
||||
Reference in New Issue
Block a user