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
e014154f
Commit
e014154f
authored
Mar 16, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fix some test failures on Win9x/WinMe by using a A-function.
parent
cc6d17ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
dom.c
dlls/mshtml/tests/dom.c
+1
-3
No files found.
dlls/mshtml/tests/dom.c
View file @
e014154f
...
...
@@ -3195,8 +3195,6 @@ static void test_screen(IHTMLWindow2 *window)
HDC
hdc
;
HRESULT
hres
;
static
const
WCHAR
displayW
[]
=
{
'D'
,
'I'
,
'S'
,
'P'
,
'L'
,
'A'
,
'Y'
,
0
};
screen
=
NULL
;
hres
=
IHTMLWindow2_get_screen
(
window
,
&
screen
);
ok
(
hres
==
S_OK
,
"get_screen failed: %08x
\n
"
,
hres
);
...
...
@@ -3216,7 +3214,7 @@ static void test_screen(IHTMLWindow2 *window)
IDispatchEx_Release
(
dispex
);
}
hdc
=
CreateIC
W
(
displayW
,
NULL
,
NULL
,
NULL
);
hdc
=
CreateIC
A
(
"DISPLAY"
,
NULL
,
NULL
,
NULL
);
exl
=
GetDeviceCaps
(
hdc
,
HORZRES
);
l
=
0xdeadbeef
;
...
...
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