Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

I think WTF is patching addEventListener incorrectly #555

Open
mhevery opened this issue Feb 8, 2016 · 0 comments
Open

I think WTF is patching addEventListener incorrectly #555

mhevery opened this issue Feb 8, 2016 · 0 comments

Comments

@mhevery
Copy link

mhevery commented Feb 8, 2016

It looks to me (and I was able to verify this in the debugger) is that the WTF is patching event HTMLElement separately. see:

wtf.trace.providers.DomProvider.prototype.injectElements_ = function() {

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant