Hi,
This has to do with Chromium browser engine's web security policy. The basic rules are:
1. Only a file scheme page can load a file scheme resource. So for example, if an Internet based page try to have an image with local file path. the request to that image will be denied;
2. Rule 1 does not apply if EnableWebSecurity is turned off:
https://www.essentialobjects.com/doc/eo.webengine.browseroptions.enablewebsecurity.aspxTo workaround rule 1, you would need to make sure the WebView's current scheme is a file scheme. So if you call WebView.LoadUrl to load a local file Url first, you will be able to call LoadHtml to load HTML that references local resources. Alternatively, you can apply rule 2 by setting EnableWebSecurity to false. See here for more details on how to use this option:
https://www.essentialobjects.com/doc/webbrowser/advanced/browser_options.aspxHope this helps. Please let us know if you still have any questions.
Thanks!