wpt / css / css-animations / crashtests / universal-selector-opacity-inherit.html

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

/css/css-animations/crashtests/universal-selector-opacity-inherit.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Universal selector with opacity: inherit in keyframes should not crash</title>
<link rel="help" href="https://crbug.com/41243180">
<div>This test passes if it does not crash.</div>
<style>
* {
  animation-name: test;
}
@keyframes test {
  0% { opacity: inherit; }
}
</style>