Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/animations/background-color-animation-zero-size-element.html
<!DOCTYPE html> <html class="reftest-wait"> <link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#background-color"> <link rel="match" href="background-color-animation-zero-size-element-ref.html"> <style> .container { animation: bgcolor 1s; } @keyframes bgcolor { 0% { background-color: rgb(0, 200, 0); } 100% { background-color: rgb(200, 0, 0); } } </style> <script src="/common/reftest-wait.js"></script> <body> <div class="container"></div> <script> // Pass if there is no crash, nothing shows on the screen takeScreenshot(); </script> </body> </html>