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
630560ea
Commit
630560ea
authored
May 25, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
May 25, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Remove stray ok() calls.
parent
8660d5e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
5 deletions
+0
-5
style.c
dlls/mshtml/tests/style.c
+0
-5
No files found.
dlls/mshtml/tests/style.c
View file @
630560ea
...
...
@@ -662,7 +662,6 @@ static void test_body_style(IHTMLStyle *style)
hres
=
IHTMLStyle_put_textDecorationUnderline
(
style
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"put_textDecorationUnderline failed: %08x
\n
"
,
hres
);
ok
(
b
==
VARIANT_FALSE
,
"textDecorationUnderline = %x
\n
"
,
b
);
hres
=
IHTMLStyle_get_textDecorationUnderline
(
style
,
&
b
);
ok
(
hres
==
S_OK
,
"get_textDecorationUnderline failed: %08x
\n
"
,
hres
);
...
...
@@ -678,7 +677,6 @@ static void test_body_style(IHTMLStyle *style)
hres
=
IHTMLStyle_put_textDecorationLineThrough
(
style
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"put_textDecorationLineThrough failed: %08x
\n
"
,
hres
);
ok
(
b
==
VARIANT_FALSE
,
"textDecorationLineThrough = %x
\n
"
,
b
);
hres
=
IHTMLStyle_get_textDecorationLineThrough
(
style
,
&
b
);
ok
(
hres
==
S_OK
,
"get_textDecorationLineThrough failed: %08x
\n
"
,
hres
);
...
...
@@ -694,7 +692,6 @@ static void test_body_style(IHTMLStyle *style)
hres
=
IHTMLStyle_put_textDecorationNone
(
style
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"put_textDecorationNone failed: %08x
\n
"
,
hres
);
ok
(
b
==
VARIANT_FALSE
,
"textDecorationNone = %x
\n
"
,
b
);
hres
=
IHTMLStyle_get_textDecorationNone
(
style
,
&
b
);
ok
(
hres
==
S_OK
,
"get_textDecorationNone failed: %08x
\n
"
,
hres
);
...
...
@@ -710,7 +707,6 @@ static void test_body_style(IHTMLStyle *style)
hres
=
IHTMLStyle_put_textDecorationOverline
(
style
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"put_textDecorationOverline failed: %08x
\n
"
,
hres
);
ok
(
b
==
VARIANT_FALSE
,
"textDecorationOverline = %x
\n
"
,
b
);
hres
=
IHTMLStyle_get_textDecorationOverline
(
style
,
&
b
);
ok
(
hres
==
S_OK
,
"get_textDecorationOverline failed: %08x
\n
"
,
hres
);
...
...
@@ -726,7 +722,6 @@ static void test_body_style(IHTMLStyle *style)
hres
=
IHTMLStyle_put_textDecorationBlink
(
style
,
VARIANT_TRUE
);
ok
(
hres
==
S_OK
,
"put_textDecorationBlink failed: %08x
\n
"
,
hres
);
ok
(
b
==
VARIANT_FALSE
,
"textDecorationBlink = %x
\n
"
,
b
);
hres
=
IHTMLStyle_get_textDecorationBlink
(
style
,
&
b
);
ok
(
hres
==
S_OK
,
"get_textDecorationBlink failed: %08x
\n
"
,
hres
);
...
...
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