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
adf1310f
Commit
adf1310f
authored
Jul 22, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLStyle2::direction property implementation.
parent
51b3100a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
4 deletions
+29
-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
+17
-0
No files found.
dlls/mshtml/htmlstyle.c
View file @
adf1310f
...
...
@@ -97,6 +97,8 @@ static const WCHAR attrColor[] =
{
'c'
,
'o'
,
'l'
,
'o'
,
'r'
,
0
};
static
const
WCHAR
attrCursor
[]
=
{
'c'
,
'u'
,
'r'
,
's'
,
'o'
,
'r'
,
0
};
static
const
WCHAR
attrDirection
[]
=
{
'd'
,
'i'
,
'r'
,
'e'
,
'c'
,
't'
,
'i'
,
'o'
,
'n'
,
0
};
static
const
WCHAR
attrDisplay
[]
=
{
'd'
,
'i'
,
's'
,
'p'
,
'l'
,
'a'
,
'y'
,
0
};
static
const
WCHAR
attrFilter
[]
=
...
...
@@ -207,6 +209,7 @@ static const struct{
{
attrClip
,
DISPID_IHTMLSTYLE_CLIP
},
{
attrColor
,
DISPID_IHTMLSTYLE_COLOR
},
{
attrCursor
,
DISPID_IHTMLSTYLE_CURSOR
},
{
attrDirection
,
DISPID_IHTMLSTYLE2_DIRECTION
},
{
attrDisplay
,
DISPID_IHTMLSTYLE_DISPLAY
},
{
attrFilter
,
DISPID_IHTMLSTYLE_FILTER
},
{
attrFontFamily
,
DISPID_IHTMLSTYLE_FONTFAMILY
},
...
...
dlls/mshtml/htmlstyle.h
View file @
adf1310f
...
...
@@ -62,6 +62,7 @@ typedef enum {
STYLEID_CLIP
,
STYLEID_COLOR
,
STYLEID_CURSOR
,
STYLEID_DIRECTION
,
STYLEID_DISPLAY
,
STYLEID_FILTER
,
STYLEID_FONT_FAMILY
,
...
...
dlls/mshtml/htmlstyle2.c
View file @
adf1310f
...
...
@@ -121,15 +121,19 @@ static HRESULT WINAPI HTMLStyle2_get_borderCollapse(IHTMLStyle2 *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLStyle2_put_direction
(
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_DIRECTION
,
v
,
0
);
}
static
HRESULT
WINAPI
HTMLStyle2_get_direction
(
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_DIRECTION
,
p
,
0
);
}
static
HRESULT
WINAPI
HTMLStyle2_put_behavior
(
IHTMLStyle2
*
iface
,
BSTR
v
)
...
...
dlls/mshtml/tests/style.c
View file @
adf1310f
...
...
@@ -277,6 +277,23 @@ static void test_style2(IHTMLStyle2 *style2)
ok
(
V_VT
(
&
v
)
==
VT_BSTR
,
"V_VT(v)=%d
\n
"
,
V_VT
(
&
v
));
ok
(
!
strcmp_wa
(
V_BSTR
(
&
v
),
"3px"
),
"V_BSTR(v) = %s
\n
"
,
wine_dbgstr_w
(
V_BSTR
(
&
v
)));
VariantClear
(
&
v
);
/* direction */
str
=
(
void
*
)
0xdeadbeef
;
hres
=
IHTMLStyle2_get_direction
(
style2
,
&
str
);
ok
(
hres
==
S_OK
,
"get_direction failed: %08x
\n
"
,
hres
);
ok
(
!
str
,
"str = %s
\n
"
,
wine_dbgstr_w
(
str
));
str
=
a2bstr
(
"ltr"
);
hres
=
IHTMLStyle2_put_direction
(
style2
,
str
);
ok
(
hres
==
S_OK
,
"put_direction failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
str
=
NULL
;
hres
=
IHTMLStyle2_get_direction
(
style2
,
&
str
);
ok
(
hres
==
S_OK
,
"get_direction failed: %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
str
,
"ltr"
),
"str = %s
\n
"
,
wine_dbgstr_w
(
str
));
SysFreeString
(
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