OLD | NEW |
1 <html> | 1 <html> |
2 <head id="b"> | 2 <head id="b"> |
3 <style id="a" type="text/css" media="screen"> | 3 <style id="a" type="text/css" media="screen"> |
4 #box { | 4 #box { |
5 -webkit-animation-duration: 2s; | 5 -webkit-animation-duration: 2s; |
6 -webkit-animation-timing-function: linear; | 6 -webkit-animation-timing-function: linear; |
7 -webkit-animation-name: anim; | 7 -webkit-animation-name: anim; |
8 background-color: blue; | 8 background-color: blue; |
9 width: 100px; | 9 width: 100px; |
10 height: 100px; | 10 height: 100px; |
11 } | 11 } |
12 @-webkit-keyframes anim { | 12 @-webkit-keyframes anim { |
13 from { -webkit-transform: rotate(0) scale(1,1); } | 13 from { transform: rotate(0) scale(1,1); } |
14 to { -webkit-transform: rotate(360deg) scale(2,4); } | 14 to { transform: rotate(360deg) scale(2,4); } |
15 } | 15 } |
16 </style> | 16 </style> |
17 </head> | 17 </head> |
18 <body> | 18 <body> |
19 <div id="box"> | 19 <div id="box"> |
20 </div> | 20 </div> |
21 <p>This should not crash</p> | 21 <p>This should not crash</p> |
22 </body> | 22 </body> |
23 </html> | 23 </html> |
24 | 24 |
(...skipping 18 matching lines...) Expand all Loading... |
43 testRunner.notifyDone(); | 43 testRunner.notifyDone(); |
44 } | 44 } |
45 | 45 |
46 if (window.testRunner) { | 46 if (window.testRunner) { |
47 testRunner.dumpAsText(); | 47 testRunner.dumpAsText(); |
48 testRunner.waitUntilDone(); | 48 testRunner.waitUntilDone(); |
49 } | 49 } |
50 | 50 |
51 crash(); | 51 crash(); |
52 </script> | 52 </script> |
OLD | NEW |