I am working on a WebCenter Spaces application and observe some strange behavior during cross-browser testing:
When you visit a site using Internet Explorer 8, Spaces quite plausibly inserts this meta tag:
<meta http-equiv="X-UA-Compatible" content="IE=8.0">
When you visit it using Internet Explorer 9, compatibility mode is enabled, but the following tag is added:
<meta http-equiv="X-UA-Compatible" content="IE=7.0">
This ensures that the compatibility view is actually used. To add insult to injury, a warning dialog box appears informing the user that the compatibility view must be turned off in order to use the application.
When the compatibility view is disabled, Spaces sends a tag that does absolutely nothing in this case:
<meta http-equiv="X-UA-Compatible" content="IE=9.0">
Why isn't this tag sent to IE9 in general? Will this disable compatibility mode and display the page correctly or not? How to configure WebCenter Spaces to properly support IE9?
Version Information: Currently using WebCenter 11.1.1.6, but we are going to upgrade to 11.1.1.5 (do not ask). I am testing IE9 on Windows Server 2008 R2 Standard x64.
source share