mshtml: Added IHTMLInputElement::select implementation.

This commit is contained in:
Jacek Caban 2008-10-10 15:48:58 -05:00 committed by Alexandre Julliard
parent 50393191a1
commit bf61a2619f

View File

@ -288,8 +288,17 @@ static HRESULT WINAPI HTMLInputElement_get_maxLength(IHTMLInputElement *iface, l
static HRESULT WINAPI HTMLInputElement_select(IHTMLInputElement *iface) static HRESULT WINAPI HTMLInputElement_select(IHTMLInputElement *iface)
{ {
HTMLInputElement *This = HTMLINPUT_THIS(iface); HTMLInputElement *This = HTMLINPUT_THIS(iface);
FIXME("(%p)\n", This); nsresult nsres;
return E_NOTIMPL;
TRACE("(%p)\n", This);
nsres = nsIDOMHTMLInputElement_Select(This->nsinput);
if(NS_FAILED(nsres)) {
ERR("Select failed: %08x\n", nsres);
return E_FAIL;
}
return S_OK;
} }
static HRESULT WINAPI HTMLInputElement_put_onchange(IHTMLInputElement *iface, VARIANT v) static HRESULT WINAPI HTMLInputElement_put_onchange(IHTMLInputElement *iface, VARIANT v)