::before 和 ::after 伪元素上的动画边缘支持

Mik*_*ike 5 css pseudo-element css-animations microsoft-edge

根据MDN,Edge 支持::before::after伪元素上的动画。但是,以下内容在 Edge 中不起作用:

p:before {
  content: "Foo";
  animation: change 1s;
}

@keyframes change {
  from {
    content: "Foo";
  }
  to {
    content: "Bar";
  }
}
Run Code Online (Sandbox Code Playgroud)
<p></p>
Run Code Online (Sandbox Code Playgroud)

是 Edge 的错误,还是 MDN 的错误,还是我遗漏了什么?