Inset box-shadow to body in IE9

IE9 cannot display inset box-shadow of body element?

body {
  box-shadow: inset 0 0 0 16px #f0f;
}

How to Fix

Set background-color of html othern than transparent.

html {
  background-color: white;
}