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
6941232d
Commit
6941232d
authored
May 28, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
May 28, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml/tests: Fix tests on some recent IE versions.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
82a0181a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
script.c
dlls/mshtml/tests/script.c
+6
-2
No files found.
dlls/mshtml/tests/script.c
View file @
6941232d
...
...
@@ -135,6 +135,7 @@ DEFINE_EXPECT(QS_VariantConversion);
DEFINE_EXPECT
(
QS_IActiveScriptSite
);
DEFINE_EXPECT
(
QS_GetCaller
);
DEFINE_EXPECT
(
ChangeType
);
DEFINE_EXPECT
(
GetTypeInfo
);
#define TESTSCRIPT_CLSID "{178fc163-f585-4e24-9c13-4bb7faf80746}"
#define TESTACTIVEX_CLSID "{178fc163-f585-4e24-9c13-4bb7faf80646}"
...
...
@@ -399,7 +400,7 @@ static HRESULT WINAPI DispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pcti
static
HRESULT
WINAPI
DispatchEx_GetTypeInfo
(
IDispatchEx
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
ok
(
0
,
"unexpected call
\n
"
);
CHECK_EXPECT2
(
GetTypeInfo
);
return
E_NOTIMPL
;
}
...
...
@@ -3453,9 +3454,12 @@ static void run_js_tests(void)
{
run_js_script
(
"jstest.html"
);
run_js_script
(
"exectest.html"
);
run_js_script
(
"vbtest.html"
);
run_js_script
(
"events.html"
);
SET_EXPECT
(
GetTypeInfo
);
run_js_script
(
"vbtest.html"
);
CLEAR_CALLED
(
GetTypeInfo
);
if
(
!
is_ie9plus
)
{
win_skip
(
"Skipping some script tests on IE older than 9.
\n
"
);
return
;
...
...
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