Hi,

I have an application which embeds the wincairo port of webkit.

It has a hidden webview used for server communication.

It also has webviews attached to standard Winapi windows, containing the
user interface.

These are loaded with the loadData method, like so (error checking omitted):

IWebFrame* frame;
webView->mainFrame(&frame);

BSTR html;
BSTR aboutBlank; /* about:blank */

// populate BSTR

frame->loadHTMLString(html, aboutBlank);

Most of the time this will finish loading and display the content.
However sometimes it doesn't and no content is displayed.

I have added logging to my IWebFrameLoadDelegate implementation and it
stops after the following are called:
didStartProvisionalLoadForFrame
identifierForInitialRequest
willSendRequest

If I close the window, which closes the webview, I will a
didFailWithLoading with an error code  of -999

Has anyone seen this before, or can you provide me any pointers?

Thanks,
Isaac
_______________________________________________
webkit-dev mailing list
webkit-dev@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-dev

Reply via email to