| <title>CSS Transition Test: transition-delay - negative 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.4. The 'transition-delay' Property" href="http://www.w3.org/TR/css3-transitions/#transition-delay-property"> |
| <meta name="assert" content="Test checks that the 'transition-delay' property set negative number will not delay the execution of transition"> |
| transition-property: background-color; |
| <p>Click the blue square below. Test passes if the <strong>color</strong> of blue and gray squares is all changed to <strong>green</strong> immediately |
| when the number inside blue square is 3.</p> |
| var ref = document.getElementById("ref"); |
| var test = document.getElementById("test"); |
| test.addEventListener("click", function(evt) { |
| ref.setAttribute("style", "background-color: green;"); |
| test.setAttribute("style", "background-color: green;"); |
| test.innerHTML = clicked; |