| 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 height: 100px; | 7 height: 100px; |
| 8 width: 100px; | 8 width: 100px; |
| 9 background-color: blue; | 9 background-color: blue; |
| 10 -webkit-transition-duration: 2s; | 10 -webkit-transition-duration: 2s; |
| 11 -webkit-transform: translate(0, 0); | 11 transform: translate(0, 0); |
| 12 } | 12 } |
| 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 test() | 21 function test() |
| (...skipping 23 matching lines...) Expand all Loading... |
| 45 </head> | 45 </head> |
| 46 <body> | 46 <body> |
| 47 <p>Box should start moving right, then move down</p> | 47 <p>Box should start moving right, then move down</p> |
| 48 <div id="box"> | 48 <div id="box"> |
| 49 </div> | 49 </div> |
| 50 | 50 |
| 51 <div id="result"> | 51 <div id="result"> |
| 52 </div> | 52 </div> |
| 53 </body> | 53 </body> |
| 54 </html> | 54 </html> |
| OLD | NEW |