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
f2361112
Commit
f2361112
authored
Jul 17, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added implementation of remaining IHTMLRect getters.
parent
bbaefeb3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
6 deletions
+54
-6
htmlelem2.c
dlls/mshtml/htmlelem2.c
+39
-6
dom.c
dlls/mshtml/tests/dom.c
+15
-0
No files found.
dlls/mshtml/htmlelem2.c
View file @
f2361112
...
...
@@ -138,8 +138,19 @@ static HRESULT WINAPI HTMLRect_put_left(IHTMLRect *iface, LONG v)
static
HRESULT
WINAPI
HTMLRect_get_left
(
IHTMLRect
*
iface
,
LONG
*
p
)
{
HTMLRect
*
This
=
HTMLRECT_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
float
left
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
nsres
=
nsIDOMClientRect_GetLeft
(
This
->
nsrect
,
&
left
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"GetLeft failed: %08x
\n
"
,
nsres
);
return
E_FAIL
;
}
*
p
=
floor
(
left
+
0
.
5
);
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLRect_put_top
(
IHTMLRect
*
iface
,
LONG
v
)
...
...
@@ -177,8 +188,19 @@ static HRESULT WINAPI HTMLRect_put_right(IHTMLRect *iface, LONG v)
static
HRESULT
WINAPI
HTMLRect_get_right
(
IHTMLRect
*
iface
,
LONG
*
p
)
{
HTMLRect
*
This
=
HTMLRECT_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
float
right
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
nsres
=
nsIDOMClientRect_GetRight
(
This
->
nsrect
,
&
right
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"GetRight failed: %08x
\n
"
,
nsres
);
return
E_FAIL
;
}
*
p
=
floor
(
right
+
0
.
5
);
return
S_OK
;
}
static
HRESULT
WINAPI
HTMLRect_put_bottom
(
IHTMLRect
*
iface
,
LONG
v
)
...
...
@@ -191,8 +213,19 @@ static HRESULT WINAPI HTMLRect_put_bottom(IHTMLRect *iface, LONG v)
static
HRESULT
WINAPI
HTMLRect_get_bottom
(
IHTMLRect
*
iface
,
LONG
*
p
)
{
HTMLRect
*
This
=
HTMLRECT_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
float
bottom
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
nsres
=
nsIDOMClientRect_GetBottom
(
This
->
nsrect
,
&
bottom
);
if
(
NS_FAILED
(
nsres
))
{
ERR
(
"GetBottom failed: %08x
\n
"
,
nsres
);
return
E_FAIL
;
}
*
p
=
floor
(
bottom
+
0
.
5
);
return
S_OK
;
}
#undef HTMLRECT_THIS
...
...
dlls/mshtml/tests/dom.c
View file @
f2361112
...
...
@@ -2875,6 +2875,21 @@ static void test_elem_bounding_client_rect(IUnknown *unk)
ok
(
hres
==
S_OK
,
"get_top failed: %08x
\n
"
,
hres
);
ok
(
l
!=
0xdeadbeef
,
"l = 0xdeadbeef
\n
"
);
l
=
0xdeadbeef
;
hres
=
IHTMLRect_get_left
(
rect
,
&
l
);
ok
(
hres
==
S_OK
,
"get_left failed: %08x
\n
"
,
hres
);
ok
(
l
!=
0xdeadbeef
,
"l = 0xdeadbeef
\n
"
);
l
=
0xdeadbeef
;
hres
=
IHTMLRect_get_bottom
(
rect
,
&
l
);
ok
(
hres
==
S_OK
,
"get_bottom failed: %08x
\n
"
,
hres
);
ok
(
l
!=
0xdeadbeef
,
"l = 0xdeadbeef
\n
"
);
l
=
0xdeadbeef
;
hres
=
IHTMLRect_get_right
(
rect
,
&
l
);
ok
(
hres
==
S_OK
,
"get_right failed: %08x
\n
"
,
hres
);
ok
(
l
!=
0xdeadbeef
,
"l = 0xdeadbeef
\n
"
);
IHTMLRect_Release
(
rect
);
}
...
...
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