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