1 <!DOCTYPE html><!-- webkit-test-runner [ enableWebAnimationsCSSIntegration=true ] -->
4 <title>This tests that auto transition returns the proper computed value.</title>
11 border: 1px solid red;
13 transition: height 1s ease-out;
18 <div id=dropdown>foobar</div>
19 PASS if you can see foobar above.
22 if (window.testRunner)
23 testRunner.waitUntilDone();
25 setTimeout(function() {
26 var element = document.getElementById("dropdown");
27 element.style.height = 'auto';
28 var h = element.offsetHeight;
29 element.style.height = h + 'px';
30 if (window.testRunner)
31 testRunner.notifyDone();