OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html> | 3 <html> |
4 <head> | 4 <head> |
5 <style> | 5 <style> |
6 #box { | 6 #box { |
7 position: relative; | 7 position: relative; |
8 height: 100px; | 8 height: 100px; |
9 width: 100px; | 9 width: 100px; |
10 background-color: blue; | 10 background-color: blue; |
11 -webkit-transform: rotate(0); | 11 transform: rotate(0); |
12 -webkit-transition: -webkit-transform, 2s; | 12 -webkit-transition: -webkit-transform, 2s; |
alancutter (OOO until 2018)
2014/10/14 05:13:48
Need to change the transition property target as w
| |
13 } | 13 } |
14 </style> | 14 </style> |
15 <script> | 15 <script> |
16 if (window.testRunner) { | 16 if (window.testRunner) { |
17 testRunner.dumpAsText(); | 17 testRunner.dumpAsText(); |
18 testRunner.waitUntilDone(); | 18 testRunner.waitUntilDone(); |
19 } | 19 } |
20 | 20 |
21 function finish() | 21 function finish() |
22 { | 22 { |
(...skipping 21 matching lines...) Expand all Loading... | |
44 <body> | 44 <body> |
45 | 45 |
46 <p> | 46 <p> |
47 This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property | 47 This tests a crash that was occuring when you have both an explicit property and 'all' in the -webkit-transition-property |
48 CSS property. The crash would occur when you retarget the transition. This t est should not crash. | 48 CSS property. The crash would occur when you retarget the transition. This t est should not crash. |
49 </p> | 49 </p> |
50 <div id="box"> | 50 <div id="box"> |
51 </div> | 51 </div> |
52 </body> | 52 </body> |
53 </html> | 53 </html> |
OLD | NEW |