When Firefox is resized the embedded mfc application (which uses apapi plugin for embeddation) is unable to fit in the resize window (firefox).
Till 17.0 version the issue was not there, post 17.0 this issue is reproducible.
Whenever resized WM_PAINT (message 15 ) is send to application The code flow (pre 18.0 firefox version to embedded application):
pWnd->WindowProc(nMsg, wParam, lParam)
CWnd::WindowProc ---> if (!OnWndMsg(message, wParam, lParam, &lResult))
lResult = DefWindowProc(message, wParam, lParam);
This in turn calls
CView::OnPaint()
Now from 18.0, I am unable to get any call to my application.
Let me know for further clarification.