commit-queue@webkit.org | d0a7483 | 2014-10-30 03:27:24 +0000 | [diff] [blame] | 1 | <!DOCTYPE html> |
2 | <html> | ||||
3 | <head> | ||||
4 | <style> | ||||
5 | h1 { | ||||
6 | -webkit-animation-name: spacing; | ||||
7 | -webkit-animation-duration: 1s; | ||||
8 | } | ||||
9 | @-webkit-keyframes spacing { | ||||
10 | 0% { | ||||
11 | word-spacing: normal | ||||
12 | } | ||||
13 | 20% { | ||||
14 | word-spacing: 100px | ||||
15 | } | ||||
16 | 40% { | ||||
17 | word-spacing: 200% | ||||
18 | } | ||||
19 | 60% { | ||||
20 | word-spacing: 20em | ||||
21 | } | ||||
22 | 80% { | ||||
23 | word-spacing: 300% | ||||
24 | } | ||||
25 | 100% { } | ||||
26 | } | ||||
27 | </style> | ||||
28 | </head> | ||||
29 | <script> | ||||
30 | if (window.testRunner) | ||||
31 | testRunner.dumpAsText(); | ||||
32 | </script> | ||||
33 | <body> | ||||
34 | <h1>PASS if no assert or crash in debug.</h1> | ||||
35 | </body> | ||||
36 | </html> |