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 Dec 29, 2022. It is now read-only.
The proper way to patch addEventListener is on the EventTarget class rather than on the individual subclasses. Or better yet, we should walk the prototype chain of each object and only patch the API if hasOwnProperty('addEventListener') returns true.
This causes issues with Zone.js. DOM interception stops working when WTF is turned on because we incorrectly get patched on superclass.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It looks to me (and I was able to verify this in the debugger) is that the WTF is patching event HTMLElement separately. see:
tracing-framework/src/wtf/trace/providers/domprovider.js
Line 127 in edbae6e
The proper way to patch
addEventListener
is on theEventTarget
class rather than on the individual subclasses. Or better yet, we should walk the prototype chain of each object and only patch the API ifhasOwnProperty('addEventListener')
returns true.This causes issues with Zone.js. DOM interception stops working when WTF is turned on because we incorrectly get patched on superclass.
The text was updated successfully, but these errors were encountered: