| <script src="resources/animation-test-helpers.js"></script> |
| @keyframes TheAnimation { |
| text-underline-offset: 0px; |
| text-underline-offset: 100px; |
| text-decoration: underline; |
| animation-timing-function: linear; |
| <div id="box">Hello</div> |
| // [animation-name, time, element-id, property, expected-value, tolerance] |
| ["TheAnimation", 0.5, "box", "text-underline-offset", "16.6666", 5], |
| ["TheAnimation", 1.0, "box", "text-underline-offset", "33.3333", 5], |
| ["TheAnimation", 2.0, "box", "text-underline-offset", "66.6666", 5], |
| document.getElementById("box").style.animationName = "TheAnimation"; |
| runAnimationTest(expectedValues, undefined, undefined, undefined, false, undefined); |