I have a WebBrowser control that loads web-page, targeted IE 9+. The problem is that this page is displayed normally in IE 9, 10, latest Firefox and Chrome, but when displaying in WebBrowser control, something goes wrong and drop-down appears over the calendar:

z-index of calendar is 1, for tag it is not set (I also tried setting 0 explicitly - same result).
Page contains meta tag:
<meta content="IE=8,9" http-equiv="X-UA-Compatible"></meta>
so I excluded possibility of wrong compatibility mode of IE. In addition "Save" and "Close" buttons looks OK, so it is at least IE 9 mode (they look worse in IE 8 and 7).
Does anybody have an idea why the layout can be different in normal IE browser and WebBrowser control?
UPDATE: Issue only reproducing when the windows form with WebBrowser control is shown as a plugin of MS Word (2010). The same form, when run as a standalone application, is displayed as expected.
document.documentModeanddocument.compatMode. They should be something like these: document.documentMode: 9, document.compatMode: CSS1Compat, ifFEATURE_BROWSER_EMULATIONworks correctly. - noseratio