summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/animation-model/animation-types/accumulation-per-property-002.html
blob: 5cf411edf6ed3b052fab1f76442daca66433cec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<meta charset=utf-8>
<title>Accumulation for each property</title>
<link rel="help" href="https://drafts.csswg.org/web-animations/#animation-types">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../testcommon.js"></script>
<script src="property-list.js"></script>
<script src="property-types.js"></script>
<script src="property-utils.js"></script>
<style>
html {
  font-size: 10px;
}
</style>
<body>
<div id="log"></div>
<script>
'use strict';

test(function() {
  runAnimationTypeTest(gCSSProperties2, 'testAccumulation');
}, 'Setup');
</script>