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
f24526e7
Commit
f24526e7
authored
Mar 23, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 23, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fixed remaining xmlhttprequest test failures.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
59b5c52f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
xmlhttprequest.c
dlls/mshtml/tests/xmlhttprequest.c
+3
-3
No files found.
dlls/mshtml/tests/xmlhttprequest.c
View file @
f24526e7
...
...
@@ -566,7 +566,7 @@ static void test_responseXML(const char *expect_text)
ok
(
broken
(
supported
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
))
||
supported
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
|
INTERFACE_USES_SECURITY_MANAGER
)
/* msxml3 SP8+ */
,
"Expected supported: (INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA | INTERFACE_USES_SECURITY_MANAGER), got %08x
\n
"
,
supported
);
ok
(
enabled
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
|
INTERFACE_USES_SECURITY_MANAGER
),
ok
(
enabled
==
(
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
|
INTERFACE_USES_SECURITY_MANAGER
)
&
supported
),
"Expected enabled: (INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA | INTERFACE_USES_SECURITY_MANAGER), got 0x%08x
\n
"
,
enabled
);
IObjectSafety_Release
(
safety
);
...
...
@@ -585,9 +585,9 @@ static void test_sync_xhr(IHTMLDocument2 *doc, const char *xml_url, const char *
LONG
val
;
HRESULT
hres
;
static
const
struct
HEADER_TYPE
expect_headers
[]
=
{
{
"Accept-Ranges"
,
"bytes"
},
{
"Accept-Ranges"
,
"bytes"
,
TRUE
},
{
"Content-Length"
,
"51"
},
{
"Content-Type"
,
"application/xml"
,
TRUE
}
{
"Content-Type"
,
"application/xml"
}
};
trace
(
"test_sync_xhr
\n
"
);
...
...
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