Does rendering error pages in CEFSharp with cef versions 123.0.7 and above is still function properly?
I'm seeking insights on the functionality of error page handling in CEFSharp concerning the changes observed from cef version 123.0.7+ (Chromium 123.0.6312.46). I am writing an application using the capi, but I have modeled various things off what I have seen within the CEFSharp.
Up until cef version 122.1.13 (Chromium 122.0.6261.130), writing directly to the document within the On Load Error callback for displaying error pages worked as expected. However, starting with cef version 123.0.7 (Chromium 123.0.6312.46) the renderer process terminates upon navigation failure, as noted by magreenblatt (viewtopic.php?f=6&t=19837#p55533). My application now does not receive the paint events for html page I wrote to the document.
I am curious to know if calling document.write with my error html is functionally different from using the DevTools to setDocumentContent. This post is a continuation from this discussion viewtopic.php?t=19837
UPDATE
It still works. Turns out using Dev Tools to set content guarantees a renderer that is not terminated