1<!DOCTYPE html> 2<meta charset="utf-8"> 3<title>Prefixed CSS Animation iteration events</title> 4<link rel="help" href="https://dom.spec.whatwg.org/#concept-event-listener-invoke"> 5 6<script src="/resources/testharness.js"></script> 7<script src="/resources/testharnessreport.js"></script> 8 9<body> 10 11<script src="resources/prefixed-animation-event-tests.js"></script> 12<script> 13'use strict'; 14 15runAnimationEventTests({ 16 unprefixedType: 'animationiteration', 17 prefixedType: 'webkitAnimationIteration', 18 // Use a long duration to avoid missing the animation due to slow machines, 19 // but set a negative delay so that the iteration boundary happens shortly 20 // after the animation starts. 21 animationCssStyle: '100s -99.9s 2', 22}); 23</script> 24