Skip to content

Comment on HTML5 Readiness : A visualisation of HTML5/CSS3 browser supportparent

Comments

Paste this into your console, and it should align correctly:

    var b = ["ie7","ie8","ie9","ff35","ff37","op","sa","ch"];
    var rays = document.getElementsByClassName("css-chart")[0].children;
    for (var i = 0; i < rays.length; i++) {
      var ray = rays[i];
      for (var j = 0; j < b.length; j++) {
        var curr = ray.children[j];
        if (curr.className != b[j]) {
          ray.insertBefore(document.createElement("b"), curr);
        }
      }
    }
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.