Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/crashtests/neutral-keyframe-crashtest.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<meta charset="utf-8">
<title>Neutral keyframes should not crash</title>
<div id="f"></div>
<script>
f.animate([{"marginTop": "auto"}], {iterationStart: 0.5, fill: 'forwards'});
requestAnimationFrame(() => {
f.animate([{"marginTop": "auto"}], {iterationStart: 0.5, fill: 'forwards'});
document.documentElement.classList.remove('test-wait');
});
</script>