Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
|
Mike Lawther (Google)
2013/04/28 23:57:20
nit: extra line here
dstockwell
2013/04/29 23:35:19
Done.
| |
| 2 <!DOCTYPE html> | |
| 3 | |
| 4 <html> | |
| 5 <head> | |
| 6 <style type="text/css"> | |
| 7 .box { | |
| 8 height: 100px; | |
| 9 width: 100px; | |
| 10 background-color: blue; | |
| 11 } | |
| 12 | |
| 13 #box { | |
| 14 -webkit-transform: rotate(90deg) translate(100px, 0); | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body> | |
| 19 | |
| 20 <div class="box" id="box"></div> | |
| 21 <div id="result"> | |
| 22 PASS - "webkitTransform" property for "box" element at 1s saw something close to : 0,1,-1,0,0,100 | |
| 23 </div> | |
| 24 | |
| 25 </body> | |
| 26 </html> | |
| OLD | NEW |