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
6034d9dc
Commit
6034d9dc
authored
May 22, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Check the correct variables.
parent
7446af76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dom.c
dlls/mshtml/tests/dom.c
+1
-1
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+2
-2
No files found.
dlls/mshtml/tests/dom.c
View file @
6034d9dc
...
...
@@ -4414,7 +4414,7 @@ static void test_default_body(IHTMLBodyElement *body)
hres
=
IHTMLBodyElement_get_text
(
body
,
&
v
);
ok
(
hres
==
S_OK
,
"expect S_OK got 0x%08d
\n
"
,
hres
);
ok
(
V_VT
(
&
v
)
==
VT_BSTR
,
"Expected VT_BSTR got %d
\n
"
,
V_VT
(
&
v
));
ok
(
bstr
==
NULL
,
"bstr != NULL
\n
"
);
ok
(
V_BSTR
(
&
v
)
==
NULL
,
"bstr != NULL
\n
"
);
/* get_text - Invalid Text */
V_VT
(
&
v
)
=
VT_BSTR
;
...
...
dlls/mshtml/tests/htmldoc.c
View file @
6034d9dc
...
...
@@ -2161,8 +2161,8 @@ static HRESULT WINAPI DocumentSite_ActivateMe(IOleDocumentSite *iface, IOleDocum
ok
(
hres
==
S_OK
,
"Could not get IOleInPlaceActiveObject: %08x
\n
"
,
hres
);
if
(
activeobj
)
{
IOleInPlaceActiveObject_GetWindow
(
activeobj
,
&
hwnd
);
ok
(
hres
==
S_OK
,
"GetWindow failed: %08x
\n
"
,
hres
);
hres
=
IOleInPlaceActiveObject_GetWindow
(
activeobj
,
&
hwnd
);
ok
(
hres
==
E_FAIL
,
"GetWindow returned %08x, expected E_FAIL
\n
"
,
hres
);
ok
(
hwnd
==
NULL
,
"hwnd=%p, expected NULL
\n
"
,
hwnd
);
}
...
...
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