rolandsteiner@chromium.org | fcb3778 | 2011-11-29 04:06:18 +0000 | [diff] [blame] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| 2 | "http://www.w3.org/TR/html4/loose.dtd"> |
| 3 | |
| 4 | <html lang="en"> |
| 5 | <head> |
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 7 | <title>Keyframes test</title> |
| 8 | <style type="text/css" media="screen"> |
| 9 | #box { |
| 10 | position: absolute; |
| 11 | left: 0; |
| 12 | top: 100px; |
| 13 | height: 100px; |
| 14 | width: 100px; |
| 15 | background-color: blue; |
| 16 | -webkit-animation-duration: 1s; |
| 17 | -webkit-animation-timing-function: linear; |
| 18 | -webkit-animation-name: anim; |
| 19 | } |
| 20 | @-webkit-keyframes anim { |
| 21 | from { left: 50px; } |
| 22 | to { left: 100px; } |
| 23 | } |
| 24 | @-webkit-keyframes irrelevant { |
| 25 | from { left: 150px; } |
| 26 | to { left: 2500px; } |
| 27 | } |
| 28 | @-webkit-keyframes anim { |
| 29 | from { left: 200px; } |
| 30 | to { left: 300px; } |
| 31 | } |
| 32 | </style> |
| 33 | <script src="resources/animation-test-helpers.js" type="text/javascript" charset="utf-8"></script> |
| 34 | <script type="text/javascript" charset="utf-8"> |
| 35 | |
| 36 | const expectedValues = [ |
| 37 | // [animation-name, time, element-id, property, expected-value, tolerance] |
| 38 | ["anim", 1, "box", "left", 300, 1], |
| 39 | ]; |
| 40 | |
| 41 | runAnimationTest(expectedValues); |
| 42 | |
| 43 | </script> |
| 44 | </head> |
| 45 | <body> |
| 46 | This test verifies that the last @keyframes rule with a given name is the one used. |
| 47 | <div id="box"> |
| 48 | </div> |
| 49 | <div id="result"> |
| 50 | </div> |
| 51 | </body> |
| 52 | </html> |