Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/universal-selector-opacity-inherit.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Universal selector with opacity: inherit in keyframes should not crash</title>
<div>This test passes if it does not crash.</div>
<style>
* {
animation-name: test;
}
@keyframes test {
0% { opacity: inherit; }
}
</style>