| <!DOCTYPE html><!-- webkit-test-runner [ experimental:WebAnimationsCSSIntegrationEnabled=false ] --> |
| <html> |
| <head> |
| <style type="text/css" media="screen"> |
| .box { |
| position: relative; |
| margin: 10px; |
| left: 0; |
| width: 100px; |
| height: 100px; |
| background-color: blue; |
| -webkit-animation-duration: 2s; |
| -webkit-animation-timing-function: linear; |
| } |
| |
| #box1 { |
| -webkit-animation-name: move; |
| } |
| @-webkit-keyframes move { |
| from { |
| left: 0px; |
| } |
| 50% { |
| opacity: 0; |
| } |
| to { |
| left: 400px; |
| } |
| } |
| |
| #box2 { |
| -webkit-animation-name: move2; |
| } |
| @-webkit-keyframes move2 { |
| from { |
| -webkit-transform: translateX(0); |
| } |
| 50% { |
| opacity: 0; |
| } |
| to { |
| -webkit-transform: translateX(400px); |
| } |
| } |
| |
| </style> |
| <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script> |
| <script type="text/javascript" charset="utf-8"> |
| |
| const expectedValues = [ |
| // [animation-name, time, element-id, property, expected-value, tolerance] |
| ["move", 1, "box1", "left", 200, 15], |
| ["move2", 1, "box2", "webkitTransform.4", 200, 15], |
| ["move", 0.5, "box1", "opacity", 0.5, 0.1], |
| ["move", 1, "box1", "opacity", 0, 0.1], |
| ["move", 1.5, "box1", "left", 300, 15], |
| ["move2", 1.5, "box2", "webkitTransform.4", 300, 15], |
| ["move", 1.5, "box1", "opacity", 0.5, 0.1], |
| ]; |
| |
| runAnimationTest(expectedValues); |
| </script> |
| </head> |
| <body> |
| <div id="box1" class="box"></div> |
| <div id="box2" class="box"></div> |
| <div id="result"> |
| </div> |
| </body> |
| </html> |