1<!DOCTYPE html>
2<meta charset="utf-8">
3<title>Prefixed CSS Animation end 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: 'animationend',
17  prefixedType: 'webkitAnimationEnd',
18  animationCssStyle: '1ms',
19});
20</script>
21