mshtml: Added IHTMLElement::put_onkeyup implementation.

oldstable
Jacek Caban 2008-06-23 20:01:25 -05:00 committed by Alexandre Julliard
parent 0848cc977f
commit 9eb4ee2e06
1 changed files with 4 additions and 2 deletions

View File

@ -487,8 +487,10 @@ static HRESULT WINAPI HTMLElement_get_onkeydown(IHTMLElement *iface, VARIANT *p)
static HRESULT WINAPI HTMLElement_put_onkeyup(IHTMLElement *iface, VARIANT v)
{
HTMLElement *This = HTMLELEM_THIS(iface);
FIXME("(%p)->()\n", This);
return E_NOTIMPL;
TRACE("(%p)->()\n", This);
return set_node_event(&This->node, EVENTID_KEYUP, &v);
}
static HRESULT WINAPI HTMLElement_get_onkeyup(IHTMLElement *iface, VARIANT *p)