Rambling Geek Rants on IE 8

Internet Explorer 8 passes the Acid2 test. Huzzah!

But waitaminnit... What's this stuff about forward compatibility by adding some new X-UA-Compatible header to my pages or my server? Am I reading this right? Are you telling me that in order for IE8 to use its fully compliant rendering, we have to add something new to our pages? And that if we don't, it will fall back to rendering pages just like IE7? Is that what this means?

That's just dumb.
[source]


Hat Tip TUIB Guy

Tags

More like this

Best time to appreciate Open Access? When you're really sick and want to learn more about what you have.: * Complete OA still a long way off. One thing I re-learned during this was that it is incredibly frustrating to see how much of the biomedical literature is still not freely available…
Since I will use vulgar language, this post will be mostly below the fold. This commenter asked me to justify a claim, to which I responded by calling him an asshole. The reason is simple, the question is a simple factual query which could have been answered by checking the source I cited. The…
Note: This is the first kind of canning you should try, and the most basic, and IMHO, most useful kind. It is definitely worth experimenting with when you've got an excess of produce, which many people do this time of year. If you don't have your own overproductive garden, perhaps you can offer…
I don't usually blog about work for wide variety of reasons. But, last week, since I wanted to write about bioinformatics software companies, I broke with tradition and wrote about Geospiza as an example. Naturally, I got some feedback about this. Some people liked it, but one of the most…

My days as a software engineer are numbered. Now, most of my code will have to look like this:


if (/* Internet Explorer 6 */) {
...
} else if (/* Internet Explorer 7 */) {
...
} else if (/* Internet Explorer 8 */) {
...
} else { /* standards compliant browser */
...
}

Ick.