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
Use-case: today we can't rely on Custom Elements because of the global registry, instead we patch the DOM methods to detection insertion, but that's not reliable enough.
Event and CustomEvent extensions
classFooEventextendsCustomEvent{constructor(){super('foo');}};varfoo=newFooEvent();console.log('This evaluates to "false" which is unexpected',fooinstanceofFooEvent);console.log('This evaluates to "true" which is expected',fooinstanceofCustomEvent);console.log('This evaluates to "true" which is expected',fooinstanceofEvent);
This issue is a placeholder to hold back references to things that are important to track outside of this project:
MutationObserver's connect and disconnect
Event and CustomEvent extensions
The text was updated successfully, but these errors were encountered: