Module: wine Branch: master Commit: e030b3ce56a520a37f95b19c14c65362ec127ab5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e030b3ce56a520a37f95b19c14...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Fri Mar 11 11:32:32 2011 +1100
msxml3: Ignore XML property ResolveExternals.
---
dlls/msxml3/domdoc.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c index d27ed02..c397fad 100644 --- a/dlls/msxml3/domdoc.c +++ b/dlls/msxml3/domdoc.c @@ -73,6 +73,7 @@ static const WCHAR PropertyProhibitDTDW[] = {'P','r','o','h','i','b','i','t','D' static const WCHAR PropertyNewParserW[] = {'N','e','w','P','a','r','s','e','r',0}; static const WCHAR PropValueXPathW[] = {'X','P','a','t','h',0}; static const WCHAR PropValueXSLPatternW[] = {'X','S','L','P','a','t','t','e','r','n',0}; +static const WCHAR PropertyResolveExternalsW[] = {'R','e','s','o','l','v','e','E','x','t','e','r','n','a','l','s',0};
/* Anything that passes the test_get_ownerDocument() * tests can go here (data shared between all instances). @@ -2952,7 +2953,8 @@ static HRESULT WINAPI domdoc_setProperty( return hr; } else if (lstrcmpiW(p, PropertyProhibitDTDW) == 0 || - lstrcmpiW(p, PropertyNewParserW) == 0) + lstrcmpiW(p, PropertyNewParserW) == 0 || + lstrcmpiW(p, PropertyResolveExternalsW) == 0) { /* Ignore */ FIXME("Ignoring property %s, value %d\n", debugstr_w(p), V_BOOL(&var));