blob: ee495b252e5cd973d7cbf0932048e4e599c32565 [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>