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
49ac9e0d
Commit
49ac9e0d
authored
Dec 19, 2008
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Dec 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Implement IHTMLStyle get_position.
parent
1a2216cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
htmlstyle.c
dlls/mshtml/htmlstyle.c
+2
-2
dom.c
dlls/mshtml/tests/dom.c
+4
-0
No files found.
dlls/mshtml/htmlstyle.c
View file @
49ac9e0d
...
...
@@ -1734,8 +1734,8 @@ static HRESULT WINAPI HTMLStyle_get_left(IHTMLStyle *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLStyle_get_position
(
IHTMLStyle
*
iface
,
BSTR
*
p
)
{
HTMLStyle
*
This
=
HTMLSTYLE_THIS
(
iface
);
FIXM
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
IHTMLStyle2_get_position
(
HTMLSTYLE2
(
This
),
p
)
;
}
static
HRESULT
WINAPI
HTMLStyle_put_zIndex
(
IHTMLStyle
*
iface
,
VARIANT
v
)
...
...
dlls/mshtml/tests/dom.c
View file @
49ac9e0d
...
...
@@ -2299,6 +2299,10 @@ static void test_default_style(IHTMLStyle *style)
test_disp
((
IUnknown
*
)
style
,
&
DIID_DispHTMLStyle
);
test_ifaces
((
IUnknown
*
)
style
,
style_iids
);
hres
=
IHTMLStyle_get_position
(
style
,
&
str
);
ok
(
hres
==
S_OK
,
"get_position failed: %08x
\n
"
,
hres
);
ok
(
!
str
,
"str=%s
\n
"
,
dbgstr_w
(
str
));
str
=
(
void
*
)
0xdeadbeef
;
hres
=
IHTMLStyle_get_fontFamily
(
style
,
&
str
);
ok
(
hres
==
S_OK
,
"get_fontFamily failed: %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