Commit 591bab37 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Better stub for IHTMLElement::setAttribute with NULL nselem.

parent 6305be26
......@@ -194,7 +194,8 @@ static HRESULT WINAPI HTMLElement_getAttribute(IHTMLElement *iface, BSTR strAttr
if(!This->nselem) {
FIXME("NULL nselem\n");
return E_NOTIMPL;
V_VT(AttributeValue) = VT_NULL;
return S_OK;
}
V_VT(AttributeValue) = VT_NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment