initMutationEvent method
void
initMutationEvent(])
The initMutationEvent()
method of the MutationEvent interface
initializes the
value of a mutation event once it's been created (normally using the
Document.createEvent method).
This method must be called to set the event before it is dispatched, using EventTarget.dispatchEvent.
Note: In general, you won't create these events yourself; they are created by the browser.
Implementation
external void initMutationEvent(
String typeArg, [
bool bubblesArg,
bool cancelableArg,
Node? relatedNodeArg,
String prevValueArg,
String newValueArg,
String attrNameArg,
int attrChangeArg,
]);