Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-animations/animation-delay-012.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Animations Test: huge negative animation-delay</title> <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> <link rel="help" href="https://drafts.csswg.org/css-animations-1/#animations"> <link rel="match" href="../reference/ref-filled-green-200px-square.html"> <style> @keyframes keyframes { from { background: green } to { background: red } } #test { animation: 1s -1e16s infinite paused keyframes; height: 200px; width: 200px; } </style> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div id="test"></div>
/css/reference/ref-filled-green-200px-square.html
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reftest Reference</title> <link rel="author" title="Javier Fernandez Garcia-Boente" href="jfernandez@igalia.com" /> <style> div { background-color: green; height: 200px; width: 200px; } </style> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div></div>