blob: 86806e95e7c25ef2c82a4d649b311deb9d3c9b44 [file] [log] [blame]
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<div id="target"></div>
<script>
test(() => {
target.animate({margin: ['1px', '0%']}, {iterationStart: 0.5, fill: 'forwards'});
assert_equals(getComputedStyle(target).margin, '0.5px');
}, "Don't crash when animating length properties to 0%");
</script>