blob: 438973af4dd6e6a6917159c35a96c9f4c3ab4ac6 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
test(() => {
assert_throws({name: 'TypeError'}, () => {
document.body.animate({left: [{toString:null}]});
});
}, 'Do not crash when passing an unstringable value in a property indexed keyframe');
</script>