OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script> | 3 <script> |
4 if (window.testRunner) { | 4 if (window.testRunner) { |
5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
6 } | 6 } |
7 </script> | 7 </script> |
8 <style> | 8 <style> |
9 @-webkit-keyframes anim { | 9 @-webkit-keyframes anim { |
10 42% { | 10 42% { |
11 -webkit-border-horizontal-spacing: 42rem; | 11 -webkit-border-horizontal-spacing: 42rem; |
12 } | 12 } |
13 } | 13 } |
14 body::first-letter { | 14 body::first-letter { |
15 -webkit-animation-name: anim; | 15 -webkit-animation-name: anim; |
16 } | 16 } |
17 </style> | 17 </style> |
18 </head> | 18 </head> |
19 <body> | 19 <body> |
20 This test passes if it does not crash. | 20 This test passes if it does not crash. |
21 </body> | 21 </body> |
22 </html> | 22 </html> |
OLD | NEW |