Commit fd350842 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msxml3: Silence FIXME for supported properties.

parent 42020c94
......@@ -2146,10 +2146,7 @@ static HRESULT internal_putProperty(
'x','m','l','d','e','c','l','-','v','e','r','s','i','o','n',0
};
FIXME("(%p)->(%s): semi-stub\n", This, debugstr_w(pProp));
if(!memcmp(pProp, wszCharset, sizeof(wszCharset)))
return E_NOTIMPL;
TRACE("(%p)->(%s)\n", This, debugstr_w(pProp));
if(!memcmp(pProp, wszDeclarationHandler, sizeof(wszDeclarationHandler)))
{
......@@ -2177,12 +2174,6 @@ static HRESULT internal_putProperty(
return S_OK;
}
if(!memcmp(pProp, wszDomNode, sizeof(wszDomNode)))
return E_FAIL;
if(!memcmp(pProp, wszInputSource, sizeof(wszInputSource)))
return E_NOTIMPL;
if(!memcmp(pProp, wszLexicalHandler, sizeof(wszLexicalHandler)))
{
if(This->isParsing) return E_FAIL;
......@@ -2211,6 +2202,17 @@ static HRESULT internal_putProperty(
return S_OK;
}
FIXME("(%p)->(%s): unsupported property\n", This, debugstr_w(pProp));
if(!memcmp(pProp, wszCharset, sizeof(wszCharset)))
return E_NOTIMPL;
if(!memcmp(pProp, wszDomNode, sizeof(wszDomNode)))
return E_FAIL;
if(!memcmp(pProp, wszInputSource, sizeof(wszInputSource)))
return E_NOTIMPL;
if(!memcmp(pProp, wszMaxElementDepth, sizeof(wszMaxElementDepth)))
return E_NOTIMPL;
......
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