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
5bc0dd71
Commit
5bc0dd71
authored
Dec 03, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Dec 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Run tests again on boxes with older IE.
parent
eaa67c38
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+6
-6
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
5bc0dd71
...
...
@@ -4152,8 +4152,8 @@ static void test_cookies(IUnknown *unk)
ok
(
hres
==
S_OK
,
"get_cookie failed: %08x
\n
"
,
hres
);
if
(
str
)
{
size
=
sizeof
(
buf
)
/
sizeof
(
WCHAR
);
b
=
InternetGetCookie
ExW
(
http_urlW
,
NULL
,
buf
,
&
size
,
0
,
NULL
);
ok
(
b
,
"InternetGetCookie
Ex
failed: %08x
\n
"
,
GetLastError
());
b
=
InternetGetCookie
W
(
http_urlW
,
NULL
,
buf
,
&
size
);
ok
(
b
,
"InternetGetCookie
W
failed: %08x
\n
"
,
GetLastError
());
ok
(
!
lstrcmpW
(
buf
,
str
),
"cookie = %s, expected %s
\n
"
,
wine_dbgstr_w
(
str
),
wine_dbgstr_w
(
buf
));
SysFreeString
(
str
);
}
...
...
@@ -4167,8 +4167,8 @@ static void test_cookies(IUnknown *unk)
ok
(
hres
==
S_OK
,
"get_cookie failed: %08x
\n
"
,
hres
);
ok
(
str2
!=
NULL
,
"cookie = NULL
\n
"
);
size
=
sizeof
(
buf
)
/
sizeof
(
WCHAR
);
b
=
InternetGetCookie
ExW
(
http_urlW
,
NULL
,
buf
,
&
size
,
0
,
NULL
);
ok
(
b
,
"InternetGetCookie
Ex
failed: %08x
\n
"
,
GetLastError
());
b
=
InternetGetCookie
W
(
http_urlW
,
NULL
,
buf
,
&
size
);
ok
(
b
,
"InternetGetCookie
W
failed: %08x
\n
"
,
GetLastError
());
ok
(
!
lstrcmpW
(
buf
,
str2
),
"cookie = %s, expected %s
\n
"
,
wine_dbgstr_w
(
str2
),
wine_dbgstr_w
(
buf
));
ok
(
strstrW
(
str2
,
str
)
!=
NULL
,
"could not find %s in %s
\n
"
,
wine_dbgstr_w
(
str
),
wine_dbgstr_w
(
str2
));
SysFreeString
(
str
);
...
...
@@ -4183,8 +4183,8 @@ static void test_cookies(IUnknown *unk)
ok
(
hres
==
S_OK
,
"get_cookie failed: %08x
\n
"
,
hres
);
ok
(
str2
!=
NULL
,
"cookie = NULL
\n
"
);
size
=
sizeof
(
buf
)
/
sizeof
(
WCHAR
);
b
=
InternetGetCookie
ExW
(
http_urlW
,
NULL
,
buf
,
&
size
,
0
,
NULL
);
ok
(
b
,
"InternetGetCookie
Ex
failed: %08x
\n
"
,
GetLastError
());
b
=
InternetGetCookie
W
(
http_urlW
,
NULL
,
buf
,
&
size
);
ok
(
b
,
"InternetGetCookie
W
failed: %08x
\n
"
,
GetLastError
());
ok
(
!
lstrcmpW
(
buf
,
str2
),
"cookie = %s, expected %s
\n
"
,
wine_dbgstr_w
(
str2
),
wine_dbgstr_w
(
buf
));
ok
(
strstrW
(
str2
,
str
)
!=
NULL
,
"could not find %s in %s
\n
"
,
wine_dbgstr_w
(
str
),
wine_dbgstr_w
(
str2
));
SysFreeString
(
str
);
...
...
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