wpt / css / css-animations / crashtests / servo-bug-45008.html

Status: PASS | Duration: 1ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi

/css/css-animations/crashtests/servo-bug-45008.html

<!DOCTYPE html>
<link rel="help" href="https://github.com/servo/servo/issues/45008">
<style>
  div {
      animation: 1s -2s infinite keyframes;
  }
  @keyframes keyframes {
      0% { border-left-color: red; }
  }
</style>
<div></div>