From: Jacek Caban <jacek(a)codeweavers.com> --- dlls/mshtml/dispex.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/mshtml/dispex.c b/dlls/mshtml/dispex.c index fd7d571aebd..0be5ba002a7 100644 --- a/dlls/mshtml/dispex.c +++ b/dlls/mshtml/dispex.c @@ -1859,7 +1859,8 @@ static HRESULT WINAPI DispatchEx_GetIDsOfNames(IWineJSDispatchHost *iface, REFII /* Native ignores all cNames > 1, and doesn't even fill them */ if(cNames) - hres = IWineJSDispatchHost_GetDispID(&This->IWineJSDispatchHost_iface, rgszNames[0], 0, rgDispId); + hres = IWineJSDispatchHost_GetDispID(&This->IWineJSDispatchHost_iface, rgszNames[0], + fdexNameCaseInsensitive, rgDispId); return hres; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6156