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
b2f3144e
Commit
b2f3144e
authored
Apr 17, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLStyle2::overflowY implementation.
parent
5b99a4e8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
4 deletions
+28
-4
htmlstyle.c
dlls/mshtml/htmlstyle.c
+3
-0
htmlstyle.h
dlls/mshtml/htmlstyle.h
+1
-0
htmlstyle2.c
dlls/mshtml/htmlstyle2.c
+8
-4
style.c
dlls/mshtml/tests/style.c
+16
-0
No files found.
dlls/mshtml/htmlstyle.c
View file @
b2f3144e
...
...
@@ -136,6 +136,8 @@ static const WCHAR attrOverflow[] =
{
'o'
,
'v'
,
'e'
,
'r'
,
'f'
,
'l'
,
'o'
,
'w'
,
0
};
static
const
WCHAR
attrOverflowX
[]
=
{
'o'
,
'v'
,
'e'
,
'r'
,
'f'
,
'l'
,
'o'
,
'w'
,
'-'
,
'x'
,
0
};
static
const
WCHAR
attrOverflowY
[]
=
{
'o'
,
'v'
,
'e'
,
'r'
,
'f'
,
'l'
,
'o'
,
'w'
,
'-'
,
'y'
,
0
};
static
const
WCHAR
attrPadding
[]
=
{
'p'
,
'a'
,
'd'
,
'd'
,
'i'
,
'n'
,
'g'
,
0
};
static
const
WCHAR
attrPaddingBottom
[]
=
...
...
@@ -232,6 +234,7 @@ static const style_tbl_entry_t style_tbl[] = {
{
attrMinHeight
,
DISPID_IHTMLSTYLE4_MINHEIGHT
},
{
attrOverflow
,
DISPID_IHTMLSTYLE_OVERFLOW
},
{
attrOverflowX
,
DISPID_IHTMLSTYLE2_OVERFLOWX
},
{
attrOverflowY
,
DISPID_IHTMLSTYLE2_OVERFLOWY
},
{
attrPadding
,
DISPID_IHTMLSTYLE_PADDING
},
{
attrPaddingBottom
,
DISPID_IHTMLSTYLE_PADDINGBOTTOM
},
{
attrPaddingLeft
,
DISPID_IHTMLSTYLE_PADDINGLEFT
},
...
...
dlls/mshtml/htmlstyle.h
View file @
b2f3144e
...
...
@@ -84,6 +84,7 @@ typedef enum {
STYLEID_MIN_HEIGHT
,
STYLEID_OVERFLOW
,
STYLEID_OVERFLOW_X
,
STYLEID_OVERFLOW_Y
,
STYLEID_PADDING
,
STYLEID_PADDING_BOTTOM
,
STYLEID_PADDING_LEFT
,
...
...
dlls/mshtml/htmlstyle2.c
View file @
b2f3144e
...
...
@@ -525,15 +525,19 @@ static HRESULT WINAPI HTMLStyle2_get_overflowX(IHTMLStyle2 *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLStyle2_put_overflowY
(
IHTMLStyle2
*
iface
,
BSTR
v
)
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle2
(
iface
);
FIXME
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_w
(
v
));
return
set_nsstyle_attr
(
This
->
nsstyle
,
STYLEID_OVERFLOW_Y
,
v
,
0
);
}
static
HRESULT
WINAPI
HTMLStyle2_get_overflowY
(
IHTMLStyle2
*
iface
,
BSTR
*
p
)
{
HTMLStyle
*
This
=
impl_from_IHTMLStyle2
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_nsstyle_attr
(
This
->
nsstyle
,
STYLEID_OVERFLOW_Y
,
p
,
0
);
}
static
HRESULT
WINAPI
HTMLStyle2_put_accelerator
(
IHTMLStyle2
*
iface
,
BSTR
v
)
...
...
dlls/mshtml/tests/style.c
View file @
b2f3144e
...
...
@@ -360,6 +360,22 @@ static void test_style2(IHTMLStyle2 *style2)
hres
=
IHTMLStyle2_get_overflowX
(
style2
,
&
str
);
ok
(
hres
==
S_OK
,
"get_overflowX failed: %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
str
,
"hidden"
),
"overflowX = %s
\n
"
,
wine_dbgstr_w
(
str
));
/* overflowY */
str
=
(
void
*
)
0xdeadbeef
;
hres
=
IHTMLStyle2_get_overflowY
(
style2
,
&
str
);
ok
(
hres
==
S_OK
,
"get_overflowY failed: %08x
\n
"
,
hres
);
ok
(
!
str
,
"overflowY = %s
\n
"
,
wine_dbgstr_w
(
str
));
str
=
a2bstr
(
"hidden"
);
hres
=
IHTMLStyle2_put_overflowY
(
style2
,
str
);
ok
(
hres
==
S_OK
,
"put_overflowY failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
str
=
NULL
;
hres
=
IHTMLStyle2_get_overflowY
(
style2
,
&
str
);
ok
(
hres
==
S_OK
,
"get_overflowY failed: %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
str
,
"hidden"
),
"overflowX = %s
\n
"
,
wine_dbgstr_w
(
str
));
}
static
void
test_style3
(
IHTMLStyle3
*
style3
)
...
...
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