Opened 11 years ago
Closed 11 years ago
#25575 closed enhancement (fixed)
Lock the compatibility mode in IE
Reported by: | azaozz | Owned by: | azaozz |
---|---|---|---|
Milestone: | 3.8 | Priority: | normal |
Severity: | normal | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
IE has several compatibility modes and several ways to control which mode is used. The admin is designed to support the "standards" mode for all IE versions.
We've been using a standards compliant <!DOCTYPE>
to set that. However this may fail if there is any output before that tag, or if the user sets the mode manually with the button in the address bar in IE8.
In these cases some admin screens may not render correctly or even be quite unusable. To fix that we can add <meta http-equiv="X-UA-Compatible" content="IE=edge" />
that tells all IE browsers to run in the highest supported document mode of the browser.
Attachments (3)
Change History (8)
#2
@
11 years ago
- Owner set to azaozz
- Resolution set to fixed
- Status changed from new to closed
In 26029:
Note: See
TracTickets for help on using
tickets.
In 25575.patch: set
X-UA-Compatible
for IE. This doesn't make any difference in other browsers but shouldn't be set for Chrome Frame as the meta tag overwrites the header send from the server.It also disables/removes the "Compatibility View" button in the address bar in IE8 and 9, prevents the users from accidentally switching to quirks mode.