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
51a6a111
Commit
51a6a111
authored
Sep 21, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 25, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Better IDM_PARSECOMPLETE test.
parent
f8682731
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+7
-6
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
51a6a111
...
...
@@ -92,7 +92,7 @@ DEFINE_EXPECT(Exec_ShellDocView_37);
DEFINE_EXPECT
(
Exec_UPDATECOMMANDS
);
DEFINE_EXPECT
(
Exec_SETTITLE
);
DEFINE_EXPECT
(
Exec_HTTPEQUIV
);
DEFINE_EXPECT
(
Exec_MSHTML_
2315
);
DEFINE_EXPECT
(
Exec_MSHTML_
PARSECOMPLETE
);
DEFINE_EXPECT
(
Invoke_AMBIENT_USERMODE
);
DEFINE_EXPECT
(
Invoke_AMBIENT_DLCONTROL
);
DEFINE_EXPECT
(
Invoke_AMBIENT_OFFLINEIFNOTCONNECTED
);
...
...
@@ -1101,9 +1101,10 @@ static HRESULT WINAPI OleCommandTarget_Exec(IOleCommandTarget *iface, const GUID
ok
(
nCmdexecopt
==
0
,
"nCmdexecopts=%08lx
\n
"
,
nCmdexecopt
);
switch
(
nCmdID
)
{
case
2315
:
CHECK_EXPECT
(
Exec_MSHTML_2315
);
/* TODO */
case
IDM_PARSECOMPLETE
:
CHECK_EXPECT
(
Exec_MSHTML_PARSECOMPLETE
);
ok
(
pvaIn
==
NULL
,
"pvaIn != NULL
\n
"
);
ok
(
pvaOut
==
NULL
,
"pvaOut != NULL
\n
"
);
return
S_OK
;
default:
ok
(
0
,
"unexpected command %ld
\n
"
,
nCmdID
);
...
...
@@ -1454,7 +1455,7 @@ static void test_download(void)
SET_EXPECT
(
Exec_HTTPEQUIV
);
SET_EXPECT
(
Exec_SETPROGRESSMAX
);
SET_EXPECT
(
Exec_SETPROGRESSPOS
);
SET_EXPECT
(
Exec_MSHTML_
2315
);
SET_EXPECT
(
Exec_MSHTML_
PARSECOMPLETE
);
SET_EXPECT
(
Exec_HTTPEQUIV_DONE
);
expect_status_text
=
(
LPCOLESTR
)
0xdeadbeef
;
/* TODO */
...
...
@@ -1472,7 +1473,7 @@ static void test_download(void)
CHECK_CALLED
(
Exec_HTTPEQUIV
);
CHECK_CALLED
(
Exec_SETPROGRESSMAX
);
CHECK_CALLED
(
Exec_SETPROGRESSPOS
);
CHECK_CALLED
(
Exec_MSHTML_
2315
);
CHECK_CALLED
(
Exec_MSHTML_
PARSECOMPLETE
);
CHECK_CALLED
(
Exec_HTTPEQUIV_DONE
);
load_state
=
LD_LOADED
;
...
...
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