Revision 2e8fa7ba82e6d796bf460567be21fbe3d4902568 authored by Ian Clelland on 11 April 2018, 02:30:42 UTC, committed by Blink WPT Bot on 11 April 2018, 02:40:01 UTC
According to the DOM spec (https://dom.spec.whatwg.org/#dom-domtokenlist-supports)
the supports() method should compare the ASCII-lowercase transform of its input to
the list of tokens supported by the DOMTokenList.

Bug: 831166
Change-Id: I40903a307ffb949bbbbc99e02b56565cb81d00ed
Reviewed-on: https://chromium-review.googlesource.com/1005412
Reviewed-by: Kent Tamura <tkent@chromium.org>
Commit-Queue: Ian Clelland <iclelland@chromium.org>
Cr-Commit-Position: refs/heads/master@{#549733}
1 parent 1bb2bd0
Raw File
transition-duration-002.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Transitions Test: transition-duration - positive number</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.2. The 'transition-duration' Property" href="http://www.w3.org/TR/css3-transitions/#transition-duration-property">
<meta name="flags" content="interact">
<meta name="assert" content="The 'transition-duration' property set positive number specifies the time that transition from the old value to the new value should take.">
<style>
  div {
    background-color: yellow;
    height: 100px;
    transition-duration: 2s;
    transition-property: width;
    transition-timing-function: linear;
    width: 100px;
  }
</style>
<body>
  <p>Click the yellow square below. Test passes if the width of square stops growing when the number inside square is '2'.</p>
  <div>0</div>
  <script>
    (function() {
      var div = document.querySelector("div");
      div.addEventListener("click", function(evt) {
        div.setAttribute("style", "width: 200px;");
        setInterval(function() {
          var timer = parseInt(div.textContent, 10);
          timer++;
          div.textContent = timer;
        }, 1000);
      }, false);
    })();
  </script>
</body>
back to top