Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 3 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /web-animations/animation-model/animation-types/addition-per-property-002.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>Addition for each property</title>
<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, 'testAddition');
}, "Setup");
</script>