RESOLVED DUPLICATE of bug 16447 10264
need ancestorChainHasListenerOfType(type) to avoid malloc during event dispatch
https://bugs.webkit.org/show_bug.cgi?id=10264
Summary need ancestorChainHasListenerOfType(type) to avoid malloc during event dispatch
Eric Seidel (no email)
Reported 2006-08-05 01:17:50 PDT
need ancestorChainHasListenerOfType(type) to avoid malloc during event dispatch Certain events could benifit from a function to check if any ancestor has a listener of a specific type. Such events include: SVGLoad mouseMoved and DOM Mutation events This would allow us to trade a treewalk for a malloc. The treewalk is likely to be less expensive. This would also require us to re-work how event listeners are stored. Using a HashMap<AtomicString, Vector<EventListenter> > would be required instead, to allow O(1) lookup of events based on type.
Attachments
Eric Seidel (no email)
Comment 1 2008-04-28 09:28:43 PDT
*** This bug has been marked as a duplicate of 16447 ***
Note You need to log in before you can comment on or make changes to this bug.