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
64af8b3f
Commit
64af8b3f
authored
Feb 21, 2009
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Implement IHTMLCurrentStyle_get_fontWeight.
parent
4aa0591c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
6 deletions
+13
-6
htmlcurstyle.c
dlls/mshtml/htmlcurstyle.c
+2
-2
htmlstyle.c
dlls/mshtml/htmlstyle.c
+0
-4
htmlstyle.h
dlls/mshtml/htmlstyle.h
+4
-0
dom.c
dlls/mshtml/tests/dom.c
+7
-0
No files found.
dlls/mshtml/htmlcurstyle.c
View file @
64af8b3f
...
...
@@ -181,8 +181,8 @@ static HRESULT WINAPI HTMLCurrentStyle_get_fontVariant(IHTMLCurrentStyle *iface,
static
HRESULT
WINAPI
HTMLCurrentStyle_get_fontWeight
(
IHTMLCurrentStyle
*
iface
,
VARIANT
*
p
)
{
HTMLCurrentStyle
*
This
=
HTMLCURSTYLE_THIS
(
iface
);
FIXM
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRAC
E
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_nsstyle_attr_var
(
This
->
nsstyle
,
STYLEID_FONT_WEIGHT
,
p
,
ATTR_STR_TO_INT
)
;
}
static
HRESULT
WINAPI
HTMLCurrentStyle_get_fontSize
(
IHTMLCurrentStyle
*
iface
,
VARIANT
*
p
)
...
...
dlls/mshtml/htmlstyle.c
View file @
64af8b3f
...
...
@@ -212,10 +212,6 @@ static LPWSTR fix_url_value(LPCWSTR val)
return
ret
;
}
#define ATTR_FIX_PX 1
#define ATTR_FIX_URL 2
#define ATTR_STR_TO_INT 4
HRESULT
set_nsstyle_attr
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
LPCWSTR
value
,
DWORD
flags
)
{
nsAString
str_name
,
str_value
,
str_empty
;
...
...
dlls/mshtml/htmlstyle.h
View file @
64af8b3f
...
...
@@ -80,3 +80,7 @@ HRESULT set_nsstyle_attr(nsIDOMCSSStyleDeclaration*,styleid_t,LPCWSTR,DWORD);
HRESULT
set_nsstyle_attr_var
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
VARIANT
*
value
,
DWORD
flags
);
HRESULT
get_nsstyle_attr_var
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
VARIANT
*
p
,
DWORD
flags
);
#define ATTR_FIX_PX 1
#define ATTR_FIX_URL 2
#define ATTR_STR_TO_INT 4
dlls/mshtml/tests/dom.c
View file @
64af8b3f
...
...
@@ -2371,6 +2371,7 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
{
BSTR
str
;
HRESULT
hres
;
VARIANT
v
;
test_disp
((
IUnknown
*
)
current_style
,
&
DIID_DispHTMLCurrentStyle
);
test_ifaces
((
IUnknown
*
)
current_style
,
cstyle_iids
);
...
...
@@ -2438,6 +2439,12 @@ static void test_current_style(IHTMLCurrentStyle *current_style)
ok
(
hres
==
S_OK
,
"get_cursor failed: %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
str
,
"default"
),
"get_cursor returned %s
\n
"
,
dbgstr_w
(
str
));
SysFreeString
(
str
);
hres
=
IHTMLCurrentStyle_get_fontWeight
(
current_style
,
&
v
);
ok
(
hres
==
S_OK
,
"get_fontWeight failed: %08x
\n
"
,
hres
);
ok
(
V_VT
(
&
v
)
==
VT_I4
,
"V_VT(v) = %d
\n
"
,
V_VT
(
&
v
));
ok
(
V_I4
(
&
v
)
==
400
,
"expect 400 got (%d)
\n
"
,
V_I4
(
&
v
));
VariantClear
(
&
v
);
}
static
void
test_style2
(
IHTMLStyle2
*
style2
)
...
...
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