-
Notifications
You must be signed in to change notification settings - Fork 12.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
consider lowercase X-UA-Compatible #1656
Comments
Is there any reason you'd still keep the At first this looks good to me, but I'd like to do some manual testing first. Nobody wants it's page rendering as it was IE6 😄 |
In this source they have examples of using the meta tag, |
If Update: if I'm not wrong gzip normally works better when using lowercase... @alrra usually knows better about this kind of stuff. :) |
I have tested this in IE 11 and yes this : |
Tested in IE11? Starting with IE11, document modes are deprecated :). Please refer to https://msdn.microsoft.com/en-us/library/ie/bg182625(v=vs.85).aspx#docmode. More importantly this needs to be tested on older browsers. |
Oops completely forgot about that! Although I have reason to believe it will work as to check it was not just defaulting out at edge I also tried |
Ok so I have tested this in IE 10 and it works with all lower case. I may be a will before I can test in IE9 and 8 as the vm's that Microsoft provide won't import into virtual box at the moment :( |
I was able to do little testing myself and everything works 🎉. You want to PR this, @BLooperZ? |
did you check it with lowercase "ie" as well? |
Everything seems to work.
@battaglr If you have more text in lowercase, then usually yes.
Haha If anyone is interested in some stats: (:warning: Please keep in mind that those numbers are not necessarily representative for actual pages with content, so treated them just as fun stats!)
|
Change made in order to be more consistent with the overall use of lowercase in `index.html`. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From https://msdn.microsoft.com/en-us/library/jj676915.aspx: "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." - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Ref #1656 Close #1656 Close #1668
@alrra: great! off-topic: which tool do you use to generate those heat maps? |
its gzthermal |
@battaglr Like @patrickkettner said, I've used gzthermal. |
Thank you both! |
Reference: h5bp/html5-boilerplate#1656 Related issue: #20
Change made in order to be more consistent with the overall use of lowercase in `index.html`. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From https://msdn.microsoft.com/en-us/library/jj676915.aspx: "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." - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Ref h5bp/html5-boilerplate#1656 Close h5bp/html5-boilerplate#1656 Close h5bp/html5-boilerplate#1668
Change made in order to be more consistent with the overall use of lowercase in `index.html`. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From https://msdn.microsoft.com/en-us/library/jj676915.aspx: "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." - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Ref h5bp#1656 Close h5bp#1656 Close h5bp#1668
Change made in order to be more consistent with the overall use of lowercase in `index.html`. From https://msdn.microsoft.com/en-us/library/jj676915.aspx: "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." Source: h5bp/html5-boilerplate#1656
This is really minor, I know, but HTML5 Boilerplate changed this to all lower case. With Gzip compression on it can save 3 bytes. :-) REF: h5bp/html5-boilerplate#1656
This is really minor, I know, but HTML5 Boilerplate changed this to all lower case. With Gzip compression on it can save 3 bytes. :-) REF: h5bp/html5-boilerplate#1656
According to http://msdn.microsoft.com/en-us/library/jj676915.aspx:
please consider making the meta tag from:
<meta http-equiv="X-UA-Compatible" content="IE=edge">
to:
<meta http-equiv="x-ua-compatible" content="IE=edge">
same reasons like Issue #1522
The text was updated successfully, but these errors were encountered: