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
I'm not sure why but this commit 9a64097 added a new #destroyed field in the MutationObserverClass that is set to true on disconnect and then disallows observe to be called after disconnect:
As per the specification:
The MutationObserver method disconnect() tells the observer to stop watching for mutations.
The observer can be reused by calling its observe() method again.
To Reproduce
Steps to reproduce the behavior:
Create a new MutationObserver instance
call .observe() method on it with appropriate parameters
call .disconnect() method on instance to stop observing
call.observe() again
Expected behavior
After disconnecting and observing again the mutation observer callback should continue to be called
The text was updated successfully, but these errors were encountered:
Describe the bug
I'm not sure why but this commit 9a64097 added a new #destroyed field in the MutationObserverClass that is set to true on disconnect and then disallows observe to be called after disconnect:
As per the specification:
The MutationObserver method disconnect() tells the observer to stop watching for mutations.
The observer can be reused by calling its observe() method again.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
After disconnecting and observing again the mutation observer callback should continue to be called
The text was updated successfully, but these errors were encountered: