Yes, IE 9 is still a beta, yet some things lead me to the conclusion that the reputation graph still won't work in the final build:

  1. Stack Overflow uses IE's standards mode, i.e. the mode where IE tries its best to conform to standards (cue trolls here); it could opt for IE8 mode with X-UA-Compatible, however.
  2. The reputation graph is drawn via HTML 5 Canvas, a feature that previous versions of IE do not support, yet IE 9 does, beta or not.
  3. Canvas is emulated on IE using VML. This correctly uses feature detection instead of checking for the browser (excanvas.min.js, line 1, char 1):

    if(!document.createElement("canvas").getContext) { ... }
    
  4. Flot, the jQuery plugin responsible for drawing the graph, uses a haphazard approach to determine whether some initialization code needs to be run (jquery.flot.min.js?0.6, line 1, char 11482):

    if (C.browser.msie) {
        window.G_vmlCanvasManager.init_(document) 
    }
    
  5. Since G_vmlCanvasManager is undefined, this breaks, leaving an empty space on the page.

Now, this is clearly not an SO bug, but rather in Flot. Judging from Issue 408 this has been known for some time, with partial fixes but nothing conclusive so far.

A quick and dirty fix (uneducated, I have no clue of JavaScript) would be that replacing above snippet with

if (!document.createElement("canvas").getContext) {
    window.G_vmlCanvasManager.init_(document) 
}

or

if (window.G_vmlCanvasManager) {
    window.G_vmlCanvasManager.init_(document) 
}

The latter of which should probably be nicer. I don't know how feasible it is to do SO-side fixes to external dependencies, but maybe it's no problem at all.

link|improve this question

29% accept rate
Hmm, detailed. Alas, the reason SO doesn't support un-final browsers is that until the final version, things are still in flux, and the browser changes. No point to work around a browser bug that may or may not be in its final version. – Piskvor's Semifinite Monkeys Nov 25 '10 at 15:32
@Piskvor: As mentioned, this behavior will persist into the final version. The IE Team already has noted that VML will not exist in standards mode (since SVG is already available), also the methods of feature discovery differ between exCanvas and Flot and will continue to be a problem, since Flot does not check the correct thing (it checks for the browser being IE, while exCanvas doesn't even initialize itself on browsers with Canvas supprt, i.e. IE 9). – Joey Nov 25 '10 at 15:47
Hmmm, so it's actually a Flot bug? I wasn't sure from the question. Interesting. – Piskvor's Semifinite Monkeys Nov 25 '10 at 15:53
@Piskvor: Yes, in principle it is a Flot bug, which already was reported (Issue 408, as linked). However, a proper fix is not in sight so far and maybe SO can work around this in the meantime. – Joey Nov 25 '10 at 15:57
Well, the SO team has previously hacked Markdown unto their own image, so maybe they could. I wouldn't count on it though - probably not while IE9 is still beta. – Piskvor's Semifinite Monkeys Nov 25 '10 at 15:59
feedback

1 Answer

This seems like information you should be giving to the flot developers, not us. If they fix it then we can fold their fixes in.

Edit: We recently pulled in a new flot version in which this issue is indeed fixed.

link|improve this answer
1  
Done (for a time now, even). It was even already fixed in their codebase since early 2010. They just didn't release anything for more than a year. So using the Flot version from their repository should fix things. – Joey Feb 11 '11 at 18:59
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged