Hello, I see a weird behaviour I am creating multiple browser windows v130 but in one of the window it crashes with below call stack
But the same window creation works when I am using alloy runtime info.runtime_style = CEF_RUNTIME_STYLE_ALLOY before CreateBrowser, which I prefer not to use as it is deprecated and also other features like zoom in/out stops working with alloy runtime.
creation of browser process :
auto browserState = m_stateFactory->Create();
CefRect bounds;
CefWindowInfo info;
info.SetAsChild(m_parentWindow->GetHwnd(), bounds);
const std::wstring startPage = L"about:blank";
CefBrowserSettings browserDefaults;
CefRefPtr<CefDictionaryValue> extra_info = CefDictionaryValue::Create();
// info.runtime_style = CEF_RUNTIME_STYLE_ALLOY;
CefBrowserHost::CreateBrowser(info, browserState->GetClient(), startPage, browserDefaults, extra_info, nullptr);