Układ Flexbox nie działa w przeglądarce Internet Explorer 10

http://jsfiddle.net/J8rL7/87/

Wedłughttp://caniuse.com/#feat=flexbox

Powinien działać dla IE10 z prefiksem vendor-prefix.

Ale tak nie jest!

AKTUALIZACJA: Właśnie sprawdziłem w najnowszym Firefoksie, że wygląda na całkowicie zepsuty.

Czemu?

<div id="wrapper" style="margin:auto;background-color:yellow;height:100%;">
    <div style="width:50px;height:100%;">
        <div class="fluid-column" style="height:80%;background-color:green;">
            <div class="box" style="background-color:#ff99cc;height:25%;">1</div>
            <div class="box" style="background-color:#ff33cc;height:50%;">2</div>
            <div class="box" style="background-color:#ff66cc;height:25%;">3</div> 
        </div>   
        <div class="fix-column" style="height:20%;background-color:violet">
            <div class="box" style="background-color:orange;height:50%;">Total</div>
            <div class="box" style="background-color:blue;height:50%;">Test</div>
        </div>
    </div>
</div>

body, html{
    width:100%;
    height:100%;
    margin:0;
    padding:0;
}

div{
    text-align:center;
   }

.box
{
    display:-webkit-box;-webkit-box-pack:center;-webkit-box-align:center;
    display:-ms-box;-ms-box-pack:center;-ms-box-align:center;
    display:-moz-box;-moz-box-pack:center;-moz-box-align:center;
}

questionAnswers(2)

yourAnswerToTheQuestion