blob: 3c2f389d4a851168dc2561db331a2c75b82090f1 [file] [log] [blame]
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<div id="target"></div>
<script>
test(function() {
var animation = target.animate([{offsetDistance: '-1%'}, {offsetDistance: '1%'}], 1);
animation.pause();
animation.currentTime = 0.5;
assert_equals(getComputedStyle(target).offsetDistance, '0%');
});
</script>