Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 #box { | 5 #box { |
| 6 position: absolute; | 6 position: absolute; |
| 7 height: 100px; | 7 height: 100px; |
| 8 width: 100px; | 8 width: 100px; |
| 9 background-color: green; | 9 background-color: green; |
| 10 -webkit-transform: translate3d(50px, 200px, 0); | 10 transform: translate3d(50px, 200px, 0); |
| 11 } | 11 } |
| 12 </style> | 12 </style> |
| 13 </head> | 13 </head> |
| 14 <body> | 14 <body> |
| 15 <div id="box"> | 15 <div id="box"> |
| 16 </div> | 16 </div> |
| 17 <div id="result"> | 17 <div id="result"> |
| 18 PASS - final state was matrix(1, 0, 0, 1, 50, 200) | 18 PASS - final state was matrix(1, 0, 0, 1, 50, 200) |
| 19 </div> | 19 </div> |
| 20 </body> | 20 </body> |
| 21 </html> | 21 </html> |
| OLD | NEW |