| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style type="text/css" media="screen"> | 3 <style type="text/css" media="screen"> |
| 4 body { | 4 body { |
| 5 margin: 0; | 5 margin: 0; |
| 6 } | 6 } |
| 7 | 7 |
| 8 #box { | 8 #box { |
| 9 position: absolute; | 9 position: absolute; |
| 10 left: 0px; | 10 left: 0px; |
| 11 top: 100px; | 11 top: 100px; |
| 12 height: 100px; | 12 height: 100px; |
| 13 width: 100px; | 13 width: 100px; |
| 14 margin: 0; | 14 margin: 0; |
| 15 background-color: green; | 15 background-color: green; |
| 16 -webkit-transform: translate(100px, 0px); | 16 transform: translate(100px, 0px); |
| 17 } | 17 } |
| 18 </style> | 18 </style> |
| 19 </head> | 19 </head> |
| 20 <body> | 20 <body> |
| 21 <div id="box"></div> | 21 <div id="box"></div> |
| 22 <div id="result"> | 22 <div id="result"> |
| 23 PASS - "webkitTransform" property for "box" element at 0.5s saw something close
to: 1,0,0,1,100,0 | 23 PASS - "webkitTransform" property for "box" element at 0.5s saw something close
to: 1,0,0,1,100,0 |
| 24 </div> | 24 </div> |
| 25 </body> | 25 </body> |
| 26 </html> | 26 </html> |
| OLD | NEW |