mshtml: Added IHTMLScriptElement::get_readyState implementation.

This commit is contained in:
Jacek Caban 2014-10-09 16:09:07 +02:00 committed by Alexandre Julliard
parent d11abc0992
commit 37869b7a08

View file

@ -281,8 +281,10 @@ static HRESULT WINAPI HTMLScriptElement_get_defer(IHTMLScriptElement *iface, VAR
static HRESULT WINAPI HTMLScriptElement_get_readyState(IHTMLScriptElement *iface, BSTR *p)
{
HTMLScriptElement *This = impl_from_IHTMLScriptElement(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
return get_readystate_string(This->readystate, p);
}
static HRESULT WINAPI HTMLScriptElement_put_onerror(IHTMLScriptElement *iface, VARIANT v)