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
140cd1b9
Commit
140cd1b9
authored
Jul 25, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added runtimeStyle tests.
parent
9ccc5f48
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
84 additions
and
29 deletions
+84
-29
style.c
dlls/mshtml/tests/style.c
+84
-29
No files found.
dlls/mshtml/tests/style.c
View file @
140cd1b9
...
@@ -255,6 +255,33 @@ static void _test_style_remove_attribute(unsigned line, IHTMLStyle *style, const
...
@@ -255,6 +255,33 @@ static void _test_style_remove_attribute(unsigned line, IHTMLStyle *style, const
ok_
(
__FILE__
,
line
)(
b
==
exb
,
"removeAttribute returned %x, expected %x
\n
"
,
b
,
exb
);
ok_
(
__FILE__
,
line
)(
b
==
exb
,
"removeAttribute returned %x, expected %x
\n
"
,
b
,
exb
);
}
}
#define set_text_decoration(a,b) _set_text_decoration(__LINE__,a,b)
static
void
_set_text_decoration
(
unsigned
line
,
IHTMLStyle
*
style
,
const
char
*
v
)
{
BSTR
str
;
HRESULT
hres
;
str
=
a2bstr
(
v
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
str
);
ok_
(
__FILE__
,
line
)(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
}
#define test_text_decoration(a,b) _test_text_decoration(__LINE__,a,b)
static
void
_test_text_decoration
(
unsigned
line
,
IHTMLStyle
*
style
,
const
char
*
exdec
)
{
BSTR
str
;
HRESULT
hres
;
hres
=
IHTMLStyle_get_textDecoration
(
style
,
&
str
);
ok_
(
__FILE__
,
line
)(
hres
==
S_OK
,
"get_textDecoration failed: %08x
\n
"
,
hres
);
if
(
exdec
)
ok_
(
__FILE__
,
line
)(
!
strcmp_wa
(
str
,
exdec
),
"textDecoration = %s, expected %s
\n
"
,
wine_dbgstr_w
(
str
),
exdec
);
else
ok_
(
__FILE__
,
line
)(
!
str
,
"textDecoration = %s, expected NULL
\n
"
,
wine_dbgstr_w
(
str
));
SysFreeString
(
str
);
}
static
void
test_set_csstext
(
IHTMLStyle
*
style
)
static
void
test_set_csstext
(
IHTMLStyle
*
style
)
{
{
VARIANT
v
;
VARIANT
v
;
...
@@ -738,35 +765,15 @@ static void test_body_style(IHTMLStyle *style)
...
@@ -738,35 +765,15 @@ static void test_body_style(IHTMLStyle *style)
ok
(
hres
==
E_INVALIDARG
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
ok
(
hres
==
E_INVALIDARG
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
SysFreeString
(
str
);
str
=
a2bstr
(
"none"
);
set_text_decoration
(
style
,
"none"
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
str
);
test_text_decoration
(
style
,
"none"
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
set_text_decoration
(
style
,
"underline"
);
SysFreeString
(
str
);
set_text_decoration
(
style
,
"overline"
);
set_text_decoration
(
style
,
"line-through"
);
str
=
a2bstr
(
"underline"
);
set_text_decoration
(
style
,
"blink"
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
str
);
set_text_decoration
(
style
,
"overline"
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
set_text_decoration
(
style
,
"blink"
);
SysFreeString
(
str
);
test_text_decoration
(
style
,
"blink"
);
str
=
a2bstr
(
"overline"
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
str
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
str
=
a2bstr
(
"line-through"
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
str
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
str
=
a2bstr
(
"blink"
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
str
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
SysFreeString
(
str
);
hres
=
IHTMLStyle_get_textDecoration
(
style
,
&
str
);
ok
(
hres
==
S_OK
,
"get_textDecoration failed: %08x
\n
"
,
hres
);
ok
(
!
strcmp_wa
(
str
,
"blink"
),
"str != blink
\n
"
);
SysFreeString
(
str
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
sDefault
);
hres
=
IHTMLStyle_put_textDecoration
(
style
,
sDefault
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
ok
(
hres
==
S_OK
,
"put_textDecoration failed: %08x
\n
"
,
hres
);
...
@@ -2335,6 +2342,53 @@ static void basic_style_test(IHTMLDocument2 *doc)
...
@@ -2335,6 +2342,53 @@ static void basic_style_test(IHTMLDocument2 *doc)
IHTMLElement_Release
(
elem
);
IHTMLElement_Release
(
elem
);
}
}
static
const
char
runtimestyle_test_str
[]
=
"<html><head><style>body {text-decoration: auto}</style></head><body></body></html>"
;
static
void
runtimestyle_test
(
IHTMLDocument2
*
doc
)
{
IHTMLStyle
*
style
,
*
runtime_style
;
IHTMLElement2
*
elem2
;
IHTMLElement
*
elem
;
BSTR
str
;
HRESULT
hres
;
hres
=
IHTMLDocument2_get_body
(
doc
,
&
elem
);
ok
(
hres
==
S_OK
,
"get_body failed: %08x
\n
"
,
hres
);
elem2
=
get_elem2_iface
((
IUnknown
*
)
elem
);
hres
=
IHTMLElement2_get_runtimeStyle
(
elem2
,
&
runtime_style
);
ok
(
hres
==
S_OK
,
"get_runtimeStyle failed: %08x
\n
"
,
hres
);
hres
=
IHTMLElement_get_style
(
elem
,
&
style
);
ok
(
hres
==
S_OK
,
"get_style failed: %08x
\n
"
,
hres
);
test_text_decoration
(
style
,
NULL
);
test_text_decoration
(
runtime_style
,
NULL
);
set_text_decoration
(
style
,
"underline"
);
test_text_decoration
(
style
,
"underline"
);
hres
=
IHTMLStyle_get_textDecoration
(
style
,
&
str
);
ok
(
hres
==
S_OK
,
"get_textDecoration failed: %08x
\n
"
,
hres
);
ok
(
broken
(
!
str
)
||
!
strcmp_wa
(
str
,
"underline"
),
"textDecoration = %s
\n
"
,
wine_dbgstr_w
(
str
));
SysFreeString
(
str
);
set_text_decoration
(
runtime_style
,
"blink"
);
test_text_decoration
(
runtime_style
,
"blink"
);
hres
=
IHTMLStyle_get_textDecoration
(
style
,
&
str
);
ok
(
hres
==
S_OK
,
"get_textDecoration failed: %08x
\n
"
,
hres
);
todo_wine
ok
(
!
strcmp_wa
(
str
,
"underline"
),
"textDecoration = %s
\n
"
,
wine_dbgstr_w
(
str
));
SysFreeString
(
str
);
IHTMLStyle_Release
(
runtime_style
);
IHTMLStyle_Release
(
style
);
IHTMLElement2_Release
(
elem2
);
IHTMLElement_Release
(
elem
);
}
static
IHTMLDocument2
*
notif_doc
;
static
IHTMLDocument2
*
notif_doc
;
static
BOOL
doc_complete
;
static
BOOL
doc_complete
;
...
@@ -2495,6 +2549,7 @@ START_TEST(style)
...
@@ -2495,6 +2549,7 @@ START_TEST(style)
CoInitialize
(
NULL
);
CoInitialize
(
NULL
);
run_test
(
basic_test_str
,
basic_style_test
);
run_test
(
basic_test_str
,
basic_style_test
);
run_test
(
runtimestyle_test_str
,
runtimestyle_test
);
CoUninitialize
();
CoUninitialize
();
}
}
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