urlmon: Fixed some tests on IE11.
This commit is contained in:
parent
563486b555
commit
2b04a5e3ff
|
@ -1385,7 +1385,7 @@ static HRESULT WINAPI BindInfo_GetBindString(IInternetBindInfo *iface, ULONG ulS
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
ok(0, "unexpected call\n");
|
ok(0, "unexpected ulStringType %d\n", ulStringType);
|
||||||
}
|
}
|
||||||
|
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
|
@ -3638,7 +3638,7 @@ static void test_binding(int prot, DWORD grf_pi, DWORD test_flags)
|
||||||
CHECK_CALLED(QueryService_InternetProtocol);
|
CHECK_CALLED(QueryService_InternetProtocol);
|
||||||
CHECK_CALLED(CreateInstance);
|
CHECK_CALLED(CreateInstance);
|
||||||
CHECK_CALLED(ReportProgress_PROTOCOLCLASSID);
|
CHECK_CALLED(ReportProgress_PROTOCOLCLASSID);
|
||||||
CHECK_CALLED(SetPriority);
|
CLEAR_CALLED(SetPriority); /* IE11 does not call it. */
|
||||||
if(impl_protex)
|
if(impl_protex)
|
||||||
CHECK_CALLED(StartEx);
|
CHECK_CALLED(StartEx);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue