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
da5372be
Commit
da5372be
authored
Jan 23, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Fixed tests on IE7.
parent
149ee9bf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
webbrowser.c
dlls/shdocvw/tests/webbrowser.c
+3
-3
No files found.
dlls/shdocvw/tests/webbrowser.c
View file @
da5372be
...
...
@@ -582,7 +582,7 @@ static HRESULT WINAPI WebBrowserEvents2_Invoke(IDispatch *iface, DISPID dispIdMe
break
;
case
DISPID_SETSECURELOCKICON
:
CHECK_EXPECT
(
Invoke_SETSECURELOCKICON
);
CHECK_EXPECT
2
(
Invoke_SETSECURELOCKICON
);
ok
(
pDispParams
->
rgvarg
!=
NULL
,
"rgvarg == NULL
\n
"
);
ok
(
pDispParams
->
cArgs
==
1
,
"cArgs=%d, expected 1
\n
"
,
pDispParams
->
cArgs
);
...
...
@@ -1081,10 +1081,10 @@ static HRESULT WINAPI DocHostUIHandler_ShowContextMenu(IDocHostUIHandler2 *iface
static
HRESULT
WINAPI
DocHostUIHandler_GetHostInfo
(
IDocHostUIHandler2
*
iface
,
DOCHOSTUIINFO
*
pInfo
)
{
CHECK_EXPECT
(
GetHostInfo
);
CHECK_EXPECT
2
(
GetHostInfo
);
ok
(
pInfo
!=
NULL
,
"pInfo=NULL
\n
"
);
if
(
pInfo
)
{
ok
(
pInfo
->
cbSize
==
sizeof
(
DOCHOSTUIINFO
),
"pInfo->cbSize=%u
\n
"
,
pInfo
->
cbSize
);
ok
(
pInfo
->
cbSize
==
sizeof
(
DOCHOSTUIINFO
)
||
broken
(
!
pInfo
->
cbSize
)
,
"pInfo->cbSize=%u
\n
"
,
pInfo
->
cbSize
);
ok
(
!
pInfo
->
dwFlags
,
"pInfo->dwFlags=%08x, expected 0
\n
"
,
pInfo
->
dwFlags
);
ok
(
!
pInfo
->
dwDoubleClick
,
"pInfo->dwDoubleClick=%08x, expected 0
\n
"
,
pInfo
->
dwDoubleClick
);
ok
(
!
pInfo
->
pchHostCss
,
"pInfo->pchHostCss=%p, expected NULL
\n
"
,
pInfo
->
pchHostCss
);
...
...
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