1 <!DOCTYPE html><!-- webkit-test-runner [ enableWebAnimationsCSSIntegration=true ] -->
11 background-color: gray;
12 transition: max-height 2s linear;
39 <script src="resources/transition-test-helpers.js"></script>
40 <script type="text/javascript">
42 const expectedValues = [
43 // [time, element-id, property, expected-value, tolerance]
44 [1, 'test1', 'max-height', 'none', 2],
45 [1, 'test2', 'max-height', '100', 2],
46 [1, 'test3', 'max-height', '50', 2],
51 document.body.classList.add('final');
54 runTransitionTest(expectedValues, setupTest, usePauseAPI);
58 <div id="test1" class="box"></div>
59 <div id="test2" class="box"></div>
60 <div id="test3" class="box"></div>
62 <div id="result"></div>