Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
79c59085
Commit
79c59085
authored
Oct 28, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 28, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fixed more test failures on win10.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1b8f84cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+13
-3
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
79c59085
...
...
@@ -872,7 +872,12 @@ static IHlinkFrame HlinkFrame = { &HlinkFrameVtbl };
static
HRESULT
WINAPI
NewWindowManager_QueryInterface
(
INewWindowManager
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
ok
(
0
,
"unexpected call %s
\n
"
,
wine_dbgstr_guid
(
riid
));
if
(
IsEqualGUID
(
&
IID_IUnknown
,
riid
)
||
IsEqualGUID
(
riid
,
&
IID_INewWindowManager
))
{
*
ppv
=
iface
;
return
S_OK
;
}
trace
(
"NewWindowManager_QueryInterface %s
\n
"
,
wine_dbgstr_guid
(
riid
));
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
...
...
@@ -2873,8 +2878,6 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
}
if
(
IsEqualGUID
(
&
CGID_ShellDocView
,
pguidCmdGroup
))
{
if
(
nCmdID
!=
63
&&
nCmdID
!=
178
&&
(
!
is_refresh
||
nCmdID
!=
37
))
test_readyState
(
NULL
);
ok
(
nCmdexecopt
==
0
,
"nCmdexecopts=%08x
\n
"
,
nCmdexecopt
);
switch
(
nCmdID
)
{
...
...
@@ -2888,6 +2891,8 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
test_readyState
(
NULL
);
load_state
=
LD_LOADING
;
}
else
{
if
(
!
is_refresh
)
test_readyState
(
NULL
);
if
(
nav_url
)
test_GetCurMoniker
(
doc_unk
,
NULL
,
nav_serv_url
,
FALSE
);
else
if
(
load_from_stream
)
...
...
@@ -2951,6 +2956,7 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
if
(
pvaIn
)
ok
(
V_VT
(
pvaOut
)
==
VT_EMPTY
,
"V_VT(pvaOut)=%d
\n
"
,
V_VT
(
pvaOut
));
test_readyState
(
NULL
);
return
E_NOTIMPL
;
case
103
:
...
...
@@ -2959,6 +2965,7 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
ok
(
pvaIn
==
NULL
,
"pvaIn != NULL
\n
"
);
ok
(
pvaOut
==
NULL
,
"pvaOut != NULL
\n
"
);
test_readyState
(
NULL
);
return
E_NOTIMPL
;
case
105
:
...
...
@@ -2967,12 +2974,14 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
ok
(
pvaIn
!=
NULL
,
"pvaIn == NULL
\n
"
);
ok
(
pvaOut
==
NULL
,
"pvaOut != NULL
\n
"
);
test_readyState
(
NULL
);
return
E_NOTIMPL
;
case
138
:
CHECK_EXPECT2
(
Exec_ShellDocView_138
);
ok
(
!
pvaIn
,
"pvaIn != NULL
\n
"
);
ok
(
!
pvaOut
,
"pvaOut != NULL
\n
"
);
test_readyState
(
NULL
);
return
S_OK
;
case
140
:
...
...
@@ -2981,6 +2990,7 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
ok
(
pvaIn
==
NULL
,
"pvaIn != NULL
\n
"
);
ok
(
pvaOut
==
NULL
,
"pvaOut != NULL
\n
"
);
test_readyState
(
NULL
);
return
E_NOTIMPL
;
case
83
:
...
...
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