msxml3: Silence FIXME for supported properties.
This commit is contained in:
parent
42020c9419
commit
fd35084294
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue