| <title>Test animation with multiple concurrent animations</title> |
| <style type="text/css" media="screen"> |
| animation-fill-mode: forwards; |
| animation: anim1 2s 0.2s linear; |
| <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script> |
| <script type="text/javascript" charset="utf-8"> |
| // [animation-name, time, element-id, property, expected-value, tolerance] |
| ["anim1", 2.5, "box1", "left", 100, 2], |
| var disablePauseAnimationAPI = false; |
| runAnimationTest(expectedValues, null, null, disablePauseAnimationAPI); |
| <p>Fill-forwards state should be the last keyframe state.</p> |