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
4fdbdaf0
Commit
4fdbdaf0
authored
Jun 30, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Ignore fdexNameImplicit flag.
parent
9157c6d6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
dispex.c
dlls/mshtml/dispex.c
+1
-1
script.c
dlls/mshtml/tests/script.c
+3
-1
No files found.
dlls/mshtml/dispex.c
View file @
4fdbdaf0
...
...
@@ -407,7 +407,7 @@ static HRESULT WINAPI DispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DW
TRACE
(
"(%p)->(%s %x %p)
\n
"
,
This
,
debugstr_w
(
bstrName
),
grfdex
,
pid
);
if
(
grfdex
&
~
(
fdexNameCaseSensitive
|
fdexNameEnsure
))
if
(
grfdex
&
~
(
fdexNameCaseSensitive
|
fdexNameEnsure
|
fdexNameImplicit
))
FIXME
(
"Unsupported grfdex %x
\n
"
,
grfdex
);
data
=
get_dispex_data
(
This
);
...
...
dlls/mshtml/tests/script.c
View file @
4fdbdaf0
...
...
@@ -477,8 +477,10 @@ static HRESULT WINAPI ActiveScriptParse_ParseScriptText(IActiveScriptParse *ifac
tmp
=
SysAllocString
(
testW
);
hres
=
IDispatchEx_GetDispID
(
document
,
tmp
,
fdexNameCaseSensitive
,
&
id
);
SysFreeString
(
tmp
);
ok
(
hres
==
DISP_E_UNKNOWNNAME
,
"GetDispID(document) failed: %08x, expected DISP_E_UNKNOWNNAME
\n
"
,
hres
);
hres
=
IDispatchEx_GetDispID
(
document
,
tmp
,
fdexNameCaseSensitive
|
fdexNameImplicit
,
&
id
);
ok
(
hres
==
DISP_E_UNKNOWNNAME
,
"GetDispID(document) failed: %08x, expected DISP_E_UNKNOWNNAME
\n
"
,
hres
);
SysFreeString
(
tmp
);
id
=
0
;
tmp
=
SysAllocString
(
testW
);
...
...
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