chromium/third_party/blink/web_tests/external/wpt/css/css-transitions/transition-property-027-manual.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Transitions Test: transition-property - max-height</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="author" title="Shiyou Tan" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/web-animations-1/#animation-type">
<link rel="help" href="https://drafts.csswg.org/css-sizing-3/#max-size-properties">
<meta name="assert" content="Test checks that the 'max-height' property is animatable.">
<style>
  #test {
    background-color: blue;
    height: 200px;
    max-height: 200px;
    transition-duration: 4s;
    transition-property: max-height;
    transition-timing-function: linear;
    width: 100px;
  }
</style>
<body>
  <p>Click the blue rectangle below. Test passes if the height of blue rectangle narrows gradually not immediately until it stops.</p>
  <div id="test"></div>
  <script>
    (function() {
      var test = document.querySelector("#test");
      test.addEventListener("click", function(evt) {
        test.setAttribute("style", "max-height: 100px;");
      }, false);
    })();
  </script>
</body>