mshtml: Don't call preventDefault in stopPropagation.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-12-04 18:01:31 +01:00 committed by Alexandre Julliard
parent 30e2762b82
commit f0b3fe8f83
1 changed files with 0 additions and 1 deletions

View File

@ -1117,7 +1117,6 @@ static HRESULT WINAPI DOMEvent_stopPropagation(IDOMEvent *iface)
This->stop_propagation = TRUE; This->stop_propagation = TRUE;
nsIDOMEvent_StopPropagation(This->nsevent); nsIDOMEvent_StopPropagation(This->nsevent);
IDOMEvent_preventDefault(&This->IDOMEvent_iface);
return S_OK; return S_OK;
} }