RESOLVED FIXED Bug 163083
Overwriting an attribute event listener can lead to wrong event listener firing order
https://bugs.webkit.org/show_bug.cgi?id=163083
Summary Overwriting an attribute event listener can lead to wrong event listener firi...
Chris Dumez
Reported 2016-10-06 14:12:53 PDT
Overwriting an attribute event listener can lead to wrong event listener firing order. This is because we remove the old event listener and then append the new one in this case instead of actually replacing the new one. e.g. element.onclick = function() { console.log('NOT RUN'); } element.addEventListener('click', function() { console.log('SECOND'); }); element.onclick = function() { console.log('FIRST'); } Prints FIRST then SECOND on Gecko, but prints SECOND then FIRST on WebKit.
Attachments
Patch (10.54 KB, patch)
2016-10-06 14:17 PDT, Chris Dumez
no flags
Patch (10.59 KB, patch)
2016-10-06 16:44 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2016-10-06 14:17:05 PDT
Darin Adler
Comment 2 2016-10-06 16:04:44 PDT
Comment on attachment 290865 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=290865&action=review > Source/WebCore/dom/EventListenerMap.cpp:120 > + listeners->at(index)->markAsRemoved(); > + listeners->at(index) = RegisteredEventListener::create(WTFMove(newListener), options); Should we use a reference to avoid calling at() twice? > Source/WebCore/dom/EventListenerMap.h:58 > + void replace(const AtomicString& eventType, EventListener& oldListener, Ref<EventListener>&& newListener, const RegisteredEventListener::Options&); This interface is intrinsically inefficient. Callers always have to call find before you call replace, so will always have to search the map twice! In the future for better efficiency we should consider adding an operation that does exactly the right thing so that setAttributeEventListener can be efficient. This would be analogous to HashMap::add function that either adds if there is no existing item, or returns the location of the existing item if there is one.
Chris Dumez
Comment 3 2016-10-06 16:44:54 PDT
WebKit Commit Bot
Comment 4 2016-10-06 17:19:07 PDT
Comment on attachment 290871 [details] Patch Clearing flags on attachment: 290871 Committed r206889: <http://trac.webkit.org/changeset/206889>
WebKit Commit Bot
Comment 5 2016-10-06 17:19:12 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.