Make sure that you have browser mode set to IE9 in developer tools

This is what MS says about doctypes source link
If a webpage specifies a doctype directive and includes an X-UA-Compatible header, the header takes precedence over the directive.
If the browser supports the header, but not any of the specified document modes, it will use the highest supported document mode to display the webpage.
Older versions of the browser that don't support the header use the to determine the document mode.
Internet Explorer 9 and earlier versions display webpages without directives in IE5 (Quirks) mode. As a result, we recommend all webpages specify a directive, such as the HTML5 doctype.
This flexibility allows the greatest compatibility for earlier versions of Internet Explorer that remain popular.
Note Because all supported versions of Internet Explorer (including Microsoft Internet Explorer 6) interpret the HTML5 document type as a standards mode document type, we recommend using the HTML5 document type for all webpages that don't require a different declaration. This ensures that your webpages are display in the highest available standards mode.
The X-UA-Compatible header isn't case sensitive; however, it must appear in the header of the webpage (the HEAD section) before all other elements except for the title element and other meta elements.