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
ab6f8f8b
Commit
ab6f8f8b
authored
Jan 20, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Create URL moniker after test initialization.
parent
81715d00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+3
-3
No files found.
dlls/mshtml/tests/htmldoc.c
View file @
ab6f8f8b
...
...
@@ -4445,9 +4445,6 @@ static void test_HTMLDocument_http(void)
trace
(
"Testing HTMLDocument (http)...
\n
"
);
hres
=
CreateURLMoniker
(
NULL
,
http_urlW
,
&
http_mon
);
ok
(
hres
==
S_OK
,
"CreateURLMoniker failed: %08x
\n
"
,
hres
);
init_test
(
LD_DOLOAD
);
ipsex
=
TRUE
;
...
...
@@ -4456,6 +4453,9 @@ static void test_HTMLDocument_http(void)
return
;
doc_unk
=
(
IUnknown
*
)
doc
;
hres
=
CreateURLMoniker
(
NULL
,
http_urlW
,
&
http_mon
);
ok
(
hres
==
S_OK
,
"CreateURLMoniker failed: %08x
\n
"
,
hres
);
test_ConnectionPointContainer
(
doc
);
test_GetCurMoniker
((
IUnknown
*
)
doc
,
NULL
,
NULL
);
test_Persist
(
doc
,
http_mon
);
...
...
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