chromium/third_party/blink/web_tests/transitions/shape-transition.html

<!DOCTYPE html>

<html>
<head>
  <style>
    #box {
      height: 100px;
      width: 100px;
      background-color: blue;
      shape-outside: polygon(nonzero, 30px 30px);
      transition-property: shape-outside;
      transition-duration: 1s;
      transition-timing-function: linear;
    }

    #box.changed {
      shape-outside: polygon(nonzero, 50px 50px);
    }
  </style>
  <script src="../animations/resources/animation-test-helpers.js"></script>
  <script type="text/javascript">
    
    const expectedValues = [
      // [time, element-id, property, expected-value, tolerance]
      [0.5, 'box', 'shape-outside', 'polygon(40px 40px)', 1],
    ];

    function setupTest()
    {
      document.getElementById('box').className = 'changed';
    }

    runTransitionTest(expectedValues, setupTest);
  </script>
</head>
<body>
  <div id="box"></div>
  <div id="result"></div>
</body>
</html>