| transition: max-height 2s linear; |
| <script src="resources/transition-test-helpers.js"></script> |
| <script type="text/javascript"> |
| // [time, element-id, property, expected-value, tolerance] |
| [1, 'test1', 'max-height', 'none', 2], |
| [1, 'test2', 'max-height', '100', 2], |
| [1, 'test3', 'max-height', '50', 2], |
| document.body.classList.add('final'); |
| runTransitionTest(expectedValues, setupTest, usePauseAPI); |
| <div id="test1" class="box"></div> |
| <div id="test2" class="box"></div> |
| <div id="test3" class="box"></div> |