Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
45dd9d17
Commit
45dd9d17
authored
Jan 31, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Accept AllowXsltScript and AllowDocumentFunction properties.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2191d977
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
domdoc.c
dlls/msxml3/domdoc.c
+5
-1
No files found.
dlls/msxml3/domdoc.c
View file @
45dd9d17
...
...
@@ -71,6 +71,8 @@ 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
};
static
const
WCHAR
PropertyAllowXsltScriptW
[]
=
{
'A'
,
'l'
,
'l'
,
'o'
,
'w'
,
'X'
,
's'
,
'l'
,
't'
,
'S'
,
'c'
,
'r'
,
'i'
,
'p'
,
't'
,
0
};
static
const
WCHAR
PropertyAllowDocumentFunctionW
[]
=
{
'A'
,
'l'
,
'l'
,
'o'
,
'w'
,
'D'
,
'o'
,
'c'
,
'u'
,
'm'
,
'e'
,
'n'
,
't'
,
'F'
,
'u'
,
'n'
,
'c'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
/* Anything that passes the test_get_ownerDocument()
* tests can go here (data shared between all instances).
...
...
@@ -3072,7 +3074,9 @@ static HRESULT WINAPI domdoc_setProperty(
}
else
if
(
lstrcmpiW
(
p
,
PropertyProhibitDTDW
)
==
0
||
lstrcmpiW
(
p
,
PropertyNewParserW
)
==
0
||
lstrcmpiW
(
p
,
PropertyResolveExternalsW
)
==
0
)
lstrcmpiW
(
p
,
PropertyResolveExternalsW
)
==
0
||
lstrcmpiW
(
p
,
PropertyAllowXsltScriptW
)
==
0
||
lstrcmpiW
(
p
,
PropertyAllowDocumentFunctionW
)
==
0
)
{
/* Ignore */
FIXME
(
"Ignoring property %s, value %s
\n
"
,
debugstr_w
(
p
),
debugstr_variant
(
&
value
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment