| <html> | |
| <head> | |
| <style type="text/css" media="screen"> | |
| body { | |
| margin: 0; | |
| } | |
| #box { | |
| position: absolute; | |
| left: 0px; | |
| top: 100px; | |
| height: 100px; | |
| width: 100px; | |
| margin: 0; | |
| background-color: green; | |
| transform: translate(100px, 0px); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="box"></div> | |
| <div id="result"> | |
| PASS - "transform" property for "box" element at 0.5s saw something close to: 1,0,0,1,100,0 | |
| </div> | |
| </body> | |
| </html> |