zalan@apple.com | 3708b36 | 2015-10-05 19:55:24 +0000 | [diff] [blame] | 1 | <script> |
2 | if (window.testRunner) | ||||
3 | testRunner.dumpAsText(); | ||||
4 | </script> | ||||
5 | |||||
6 | <style> | ||||
7 | q:before { | ||||
8 | position: fixed; | ||||
9 | -webkit-animation-name: name1; | ||||
10 | -webkit-animation-duration: 1s; | ||||
11 | } | ||||
12 | |||||
13 | @-webkit-keyframes name1 { | ||||
14 | from { | ||||
15 | column-width: 10px; | ||||
16 | } | ||||
17 | to { | ||||
18 | column-width: 20px; | ||||
19 | } | ||||
20 | } | ||||
21 | </style> | ||||
22 | |||||
23 | <q>PASS if no crash or assert in debug</q> |