mshtml: Added support for capturing event phase.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-10-25 18:13:54 +02:00 committed by Alexandre Julliard
parent 8e32ee6aad
commit 2bffe9af8d
1 changed files with 9 additions and 2 deletions

View File

@ -1551,8 +1551,15 @@ void dispatch_event(EventTarget *event_target, DOMEvent *event)
event->target = event_target; event->target = event_target;
IDispatchEx_AddRef(&event_target->dispex.IDispatchEx_iface); IDispatchEx_AddRef(&event_target->dispex.IDispatchEx_iface);
event->phase = DEP_AT_TARGET; event->phase = DEP_CAPTURING_PHASE;
call_event_handlers(target_chain[0], event); i = chain_cnt-1;
while(!event->stop_propagation && i)
call_event_handlers(target_chain[i--], event);
if(!event->stop_propagation) {
event->phase = DEP_AT_TARGET;
call_event_handlers(target_chain[0], event);
}
if(event_flags & EVENT_BUBBLES) { if(event_flags & EVENT_BUBBLES) {
event->phase = DEP_BUBBLING_PHASE; event->phase = DEP_BUBBLING_PHASE;