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
f9036324
Commit
f9036324
authored
Jan 13, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fixed location tests on IE11.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5f8f1929
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
htmllocation.c
dlls/mshtml/tests/htmllocation.c
+2
-1
No files found.
dlls/mshtml/tests/htmllocation.c
View file @
f9036324
...
...
@@ -215,7 +215,8 @@ static void test_port(IHTMLLocation *loc, const struct location_test *test)
hres
=
IHTMLLocation_get_port
(
loc
,
&
str
);
ok
(
hres
==
S_OK
,
"%s: get_port failed: 0x%08x
\n
"
,
test
->
name
,
hres
);
if
(
hres
==
S_OK
)
ok
(
str_eq_wa
(
str
,
test
->
port
),
ok
(
str_eq_wa
(
str
,
test
->
port
)
||
(
!
str
&&
!*
test
->
port
),
/* IE11 */
"%s: expected retrieved port to be L
\"
%s
\"
, was: %s
\n
"
,
test
->
name
,
test
->
port
,
wine_dbgstr_w
(
str
));
SysFreeString
(
str
);
...
...
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