blob: 7a85fecf3d537507850cc7abf010b51d7d01a833 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
test(function() {
var animation = document.documentElement.animate([], { id: 'testId' });
assert_equals(animation.id, 'testId');
}, 'Tests that animation id is set when specified from keyframe options');
</script>
|