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
03b377f3
Commit
03b377f3
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: Added IHTMLTable::frame property implementation.
parent
bc582f09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
5 deletions
+33
-5
htmltable.c
dlls/mshtml/htmltable.c
+23
-4
dom.c
dlls/mshtml/tests/dom.c
+10
-1
No files found.
dlls/mshtml/htmltable.c
View file @
03b377f3
...
...
@@ -193,15 +193,34 @@ static HRESULT WINAPI HTMLTable_get_border(IHTMLTable *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLTable_put_frame
(
IHTMLTable
*
iface
,
BSTR
v
)
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
return
E_NOTIMPL
;
nsAString
str
;
nsresult
nsres
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
nsAString_InitDepend
(
&
str
,
v
);
nsres
=
nsIDOMHTMLTableElement_SetFrame
(
This
->
nstable
,
&
str
);
nsAString_Finish
(
&
str
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"SetFrame(%s) failed: %08x
\n
"
,
debugstr_w
(
v
),
nsres
);
return
E_FAIL
;
}
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLTable_get_frame
(
IHTMLTable
*
iface
,
BSTR
*
p
)
{
HTMLTable
*
This
=
impl_from_IHTMLTable
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
nsAString
str
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
nsAString_Init
(
&
str
,
NULL
);
nsres
=
nsIDOMHTMLTableElement_GetFrame
(
This
->
nstable
,
&
str
);
return
return_nsstr
(
nsres
,
&
str
,
p
);
}
static
HRESULT
WINAPI
HTMLTable_put_rules
(
IHTMLTable
*
iface
,
BSTR
v
)
...
...
dlls/mshtml/tests/dom.c
View file @
03b377f3
...
...
@@ -6205,8 +6205,17 @@ static void test_table_elem(IHTMLElement *elem)
ok
(
!
strcmp_wa
(
V_BSTR
(
&
v
),
"11"
),
"Expected 11, got %s
\n
"
,
wine_dbgstr_w
(
V_BSTR
(
&
v
)));
VariantClear
(
&
v
);
test_table_modify
(
table
);
bstr
=
a2bstr
(
"box"
);
hres
=
IHTMLTable_put_frame
(
table
,
bstr
);
ok
(
hres
==
S_OK
,
"put_frame = %08x
\n
"
,
hres
);
SysFreeString
(
bstr
);
hres
=
IHTMLTable_get_frame
(
table
,
&
bstr
);
ok
(
hres
==
S_OK
,
"get_frame = %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
bstr
,
"box"
),
"Expected box, got %s
\n
"
,
wine_dbgstr_w
(
bstr
));
SysFreeString
(
bstr
);
test_table_modify
(
table
);
bstr
=
a2bstr
(
"summary"
);
hres
=
IHTMLTable3_put_summary
(
table3
,
bstr
);
ok
(
hres
==
S_OK
,
"put_summary = %08x
\n
"
,
hres
);
...
...
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