IE9 border-radius rtl direction bug

IE9 switched rounded corner sites in RTL mode

HTML

<body dir="rtl">
    <div class="box"> right to left </div>
</body>

CSS

body{
  direction: rtl;
  unicode-bidi: bidi-override;
}
.box {
    background-color: red;
    padding: 48px;
    height: 100px;
    width: 200px;
    margin: 40px;
    border-radius: 0 48px 48px 0;
}