You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2019. It is now read-only.
It seems that Mutation Observer callbacks are executed in wrong order, and what is worse in the wrong moment regarding detachedCallback.
In FF and IE, If I detach element, then append/remove child element, mutation callback is executed before detached one:
It seems that Mutation Observer callbacks are executed in wrong order, and what is worse in the wrong moment regarding
detachedCallback.In FF and IE, If I detach element, then append/remove child element, mutation callback is executed before detached one:
Then, even tough I
.disconnected observer atdetachedCallback, mutation callback is executed.http://jsbin.com/cuqeti/edit?html,console,output
In Chrome it works as expected.