https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b1a56ade254960c4eebbbb0a0c3d2cecaf3df578 authored by Ian Kilpatrick on 28 March 2018, 04:35:58 UTC
[css-layout-api] Implementation of LayoutConstraints#fixedInlineSize.
Tip revision: b1a56ad
transition-property-004.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Transitions Test: transition-property - all</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="author" title="Shiyou Tan" href="mailto:shiyoux.tan@intel.com">
<link rel="help" title="2.1. The 'transition-property' Property" href="http://www.w3.org/TR/css3-transitions/#transition-property-property">
<meta name="flags" content="interact">
<meta name="assert" content="The 'transition-duration' property set 'all' means that all properties are transitioned.">
<style>
  #test {
    background-color: blue;
    height: 100px;
    transition-duration: 2s;
    transition-property: all;
    transition-timing-function: linear;
    width: 100px;
  }
</style>
<body>
  <p>Click the blue square below. Test passes if both height and width of blue square grow smoothly.</p>
  <div id="test"></div>
  <script>
    (function() {
      var div = document.querySelector("#test");
      div.addEventListener("click", function(evt) {
        div.setAttribute("style", "height: 200px; width: 200px;");
      }, false);
    })();
  </script>
</body>
back to top