I have a few questions (I am interested in answers related to Firefox, but answers in context of other browser might be acceptable too).
Do DOM Mutation events get fired for nodes disconnected from the main document, i.e. are disconnected? As per information present in one of the Mozilla bugs, the answer seems yes. Can someone give me some examples?
What is the quickest way of finding if a node is disconnected or not? The naive approach is walk (using node.parentNode) all the way up till we reach null or the document. Anything faster?
Does Firefox support Webkit's 'magic iframe' feature? If not, what will happen if that code ran in Firefox?
Related to #3, is it possible for a iframe to continue loading while disconnected from the document? I.e. it was connected to a main doc, loading started, then moved to another document (using adoptNode()), but never added to a parent node in the new doc. Will iframe continue loading?
Thanks in advance, Sunil