blob: fc9c66892ee07697a1bcf1e888e160c6fb0619b2 [file] [log] [blame]
<!doctype html>
<meta charset=utf-8>
<title>CustomEffect</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<body>
<script>
'use strict';
test(t => {
const animation = document.timeline.animate(progress => { }, { duration: 1 });
assert_array_equals(document.getAnimations(), [animation]);
}, "Animation created with document.timeline.animate() appears in getAnimations() result.");
</script>
</body>