Hi,
   For Events model, there are 7 types of MutationEvent, and they are
DOMCharacterDataModified, DOMAttrModified, DOMNodeInserted,
DOMNodeRemoval, DOMNodeInsertedIntoDocument,
DOMNodeRemovedFromDocument, DOMSubtreeModified.

   I have supported the first 4 ones, but for the last three ones, I
think it is better to discuss something here.

1. For DOMNodeInsertedIntoDocument/DOMNodeRemovedFromDocument, the
spec ask that each Node inserted/removed from the document, we should
dispatch such an Event. But this may cause many events generated, do
you think they are indispensable for our implementation? Should we
support them now?

2. For the  DOMSubtreeModified event, I think the best time it should
be generated is after a bunch of JS(or other scripts which manipulate
DOM) end. But how do we find that that is an end. I am wondering what
is the best way to deal with this event type...

Any advice are welcomed, thanks!

Regards!
Bo

Reply via email to