chromium/third_party/blink/web_tests/animations/interpolation/svg-stroke-dashoffset-interpolation.html

<!DOCTYPE html>
<meta charset="UTF-8">
<style>
.container {
  display: inline-block;
}
.parent {
  stroke-dashoffset: 80px;
}
.target {
  font-size: 16px;
  stroke: black;
  stroke-width: 10px;
  stroke-dashoffset: 20px;
}
.expected {
  stroke: green;
}
</style>
<body>
<template id="target-template">
  <svg height="200" width="5">
    <path d="M0,0 l0,200" stroke-dasharray="10,20" class="target">
  </svg>
</template>
<script src="resources/interpolation-test.js"></script>
<script>
assertInterpolation({
  property: 'stroke-dashoffset',
  from: neutralKeyframe,
  to: '40px',
}, [
  {at: -0.25, is: '15px'},
  {at: 0, is: '20px'},
  {at: 0.25, is: '25px'},
  {at: 0.5, is: '30px'},
  {at: 0.75, is: '35px'},
  {at: 1, is: '40px'},
  {at: 1.25, is: '45px'},
]);

assertInterpolation({
  property: 'stroke-dashoffset',
  from: 'initial',
  to: '40px',
}, [
  {at: -0.25, is: '-10px'},
  {at: 0, is: '0px'},
  {at: 0.25, is: '10px'},
  {at: 0.5, is: '20px'},
  {at: 0.75, is: '30px'},
  {at: 1, is: '40px'},
  {at: 1.25, is: '50px'},
]);

assertInterpolation({
  property: 'stroke-dashoffset',
  from: 'inherit',
  to: '40px',
}, [
  {at: -0.25, is: '90px'},
  {at: 0, is: '80px'},
  {at: 0.25, is: '70px'},
  {at: 0.5, is: '60px'},
  {at: 0.75, is: '50px'},
  {at: 1, is: '40px'},
  {at: 1.25, is: '30px'},
]);

assertInterpolation({
  property: 'stroke-dashoffset',
  from: 'unset',
  to: '40px',
}, [
  {at: -0.25, is: '90px'},
  {at: 0, is: '80px'},
  {at: 0.25, is: '70px'},
  {at: 0.5, is: '60px'},
  {at: 0.75, is: '50px'},
  {at: 1, is: '40px'},
  {at: 1.25, is: '30px'},
]);

assertInterpolation({
  property: 'stroke-dashoffset',
  from: '-10px',
  to: '10px'
}, [
  {at: -0.25, is: '-15px'},
  {at: 0, is: '-10px'},
  {at: 0.25, is: '-5px'},
  {at: 0.5, is: '0px'},
  {at: 0.75, is: '5px'},
  {at: 1, is: '10px'},
  {at: 1.25, is: '15px'},
]);

assertInterpolation({
  property: 'stroke-dashoffset',
  from: '-20px',
  to: '30em'
}, [
  {at: -0.25, is: '-145px'},
  {at: 0, is: '-20px'},
  {at: 0.25, is: '105px'},
  {at: 0.5, is: '230px'},
  {at: 0.75, is: '355px'},
  {at: 1, is: '30em'},
  {at: 1.25, is: '605px'},
]);

assertInterpolation({
  property: 'stroke-dashoffset',
  from: '-10',
  to: '10'
}, [
  {at: -0.25, is: '-15'},
  {at: 0, is: '-10'},
  {at: 0.25, is: '-5'},
  {at: 0.5, is: '0'},
  {at: 0.75, is: '5'},
  {at: 1, is: '10'},
  {at: 1.25, is: '15'},
]);
</script>
</body>