Jacek Caban : mshtml: Added IHTMLElement::put_onkeyup implementation.

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 23 10:27:45 CDT 2016


Module: wine
Branch: master
Commit: 4d1194d1047939dd9cba8df5d6bd8ad60a9ff7e5
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=4d1194d1047939dd9cba8df5d6bd8ad60a9ff7e5

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Sun May 22 13:25:53 2016 +0200

mshtml: Added IHTMLElement::put_onkeyup implementation.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mshtml/htmlelem.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c
index 9456759..7abd727 100644
--- a/dlls/mshtml/htmlelem.c
+++ b/dlls/mshtml/htmlelem.c
@@ -979,8 +979,10 @@ static HRESULT WINAPI HTMLElement_put_onkeyup(IHTMLElement *iface, VARIANT v)
 static HRESULT WINAPI HTMLElement_get_onkeyup(IHTMLElement *iface, VARIANT *p)
 {
     HTMLElement *This = impl_from_IHTMLElement(iface);
-    FIXME("(%p)->(%p)\n", This, p);
-    return E_NOTIMPL;
+
+    TRACE("(%p)->(%p)\n", This, p);
+
+    return get_node_event(&This->node, EVENTID_KEYUP, p);
 }
 
 static HRESULT WINAPI HTMLElement_put_onkeypress(IHTMLElement *iface, VARIANT v)




More information about the wine-cvs mailing list