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
9ee4b8b0
Commit
9ee4b8b0
authored
Aug 18, 2014
by
Zhenbo Li
Committed by
Alexandre Julliard
Aug 18, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fix test_tr_modify().
parent
2789538b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
dom.c
dlls/mshtml/tests/dom.c
+4
-3
No files found.
dlls/mshtml/tests/dom.c
View file @
9ee4b8b0
...
...
@@ -5801,7 +5801,7 @@ static void test_tr_modify(IHTMLElement *elem, IHTMLTableRow *row)
{
HRESULT
hres
;
IDispatch
*
disp
;
I
Unknown
*
unk
;
I
HTMLTableCell
*
cell
;
hres
=
IHTMLTableRow_deleteCell
(
row
,
0
);
ok
(
hres
==
S_OK
,
"deleteCell failed: %08x
\n
"
,
hres
);
...
...
@@ -5810,10 +5810,11 @@ static void test_tr_modify(IHTMLElement *elem, IHTMLTableRow *row)
hres
=
IHTMLTableRow_insertCell
(
row
,
0
,
&
disp
);
ok
(
hres
==
S_OK
,
"insertCell failed: %08x
\n
"
,
hres
);
ok
(
disp
!=
NULL
,
"disp == NULL
\n
"
);
hres
=
IDispatch_QueryInterface
(
disp
,
&
IID_IHTMLTableCell
,
(
void
**
)
&
unk
);
hres
=
IDispatch_QueryInterface
(
disp
,
&
IID_IHTMLTableCell
,
(
void
**
)
&
cell
);
ok
(
hres
==
S_OK
,
"Could not get IID_IHTMLTableCell interface: %08x
\n
"
,
hres
);
ok
(
cell
!=
NULL
,
"cell == NULL
\n
"
);
if
(
SUCCEEDED
(
hres
))
I
Unknown_Release
(
unk
);
I
HTMLTableCell_Release
(
cell
);
test_tr_possess
(
elem
,
row
,
2
,
"td2"
);
IDispatch_Release
(
disp
);
}
...
...
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