Module: wine Branch: master Commit: f0b3fe8f836317dd073444570f185b4aedd2739b URL: http://source.winehq.org/git/wine.git/?a=commit;h=f0b3fe8f836317dd073444570f...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Dec 4 18:01:31 2017 +0100
mshtml: Don't call preventDefault in stopPropagation.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mshtml/htmlevent.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/dlls/mshtml/htmlevent.c b/dlls/mshtml/htmlevent.c index fba04b5..3d68555 100644 --- a/dlls/mshtml/htmlevent.c +++ b/dlls/mshtml/htmlevent.c @@ -1117,7 +1117,6 @@ static HRESULT WINAPI DOMEvent_stopPropagation(IDOMEvent *iface)
This->stop_propagation = TRUE; nsIDOMEvent_StopPropagation(This->nsevent); - IDOMEvent_preventDefault(&This->IDOMEvent_iface); return S_OK; }