for example, OnLoadError is called with Aborted rather than the actual certificate error.
This appears to be a result of exacting the callback with CERTIFICATE_REQUEST_RESULT_TYPE_CANCEL
https://github.com/chromiumembedded/cef ... nt.cc#L883
https://source.chromium.org/chromium/ch ... s=chromium
- Code: Select all
// Cancels the request synchronously using a net::ERR_ABORTED.
CERTIFICATE_REQUEST_RESULT_TYPE_CANCEL,
// Denies the request synchronously using the certificate error code that was
// encountered.
CERTIFICATE_REQUEST_RESULT_TYPE_DENY,
The chromium source seems to suggest using CERTIFICATE_REQUEST_RESULT_TYPE_DENY would use the certificate error code.
Thoughts on changing CEF to use CERTIFICATE_REQUEST_RESULT_TYPE_DENY?