Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #box { | 4 #box { |
| 5 position: relative; | 5 position: relative; |
| 6 width: 10px; | 6 width: 10px; |
| 7 height: 10px; | 7 height: 10px; |
| 8 background-color: green; | 8 background-color: green; |
| 9 -webkit-transform: translate3d(0, 0, 0); | 9 transform: translate3d(0, 0, 0); |
| 10 -webkit-transition: -webkit-transform 200ms linear; | 10 -webkit-transition: -webkit-transform 200ms linear; |
|
alancutter (OOO until 2018)
2014/10/14 05:13:48
Need to change the transition property target as w
| |
| 11 } | 11 } |
| 12 </style> | 12 </style> |
| 13 <script> | 13 <script> |
| 14 | 14 |
| 15 if (window.testRunner) { | 15 if (window.testRunner) { |
| 16 window.testRunner.dumpAsText(); | 16 window.testRunner.dumpAsText(); |
| 17 window.testRunner.waitUntilDone(); | 17 window.testRunner.waitUntilDone(); |
| 18 } | 18 } |
| 19 | 19 |
| 20 var NUMBER_OF_INTERRUPTIONS = 30; | 20 var NUMBER_OF_INTERRUPTIONS = 30; |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 46 }, false); | 46 }, false); |
| 47 | 47 |
| 48 </script> | 48 </script> |
| 49 </head> | 49 </head> |
| 50 <body> | 50 <body> |
| 51 <div id="box"></div> | 51 <div id="box"></div> |
| 52 <p>This test should not crash</p> | 52 <p>This test should not crash</p> |
| 53 <p id="results"></p> | 53 <p id="results"></p> |
| 54 </body> | 54 </body> |
| 55 </html> | 55 </html> |
| OLD | NEW |