| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 div { | 3 div { |
| 4 width: 100px; | 4 width: 100px; |
| 5 height: 100px; | 5 height: 100px; |
| 6 position: absolute; | 6 position: absolute; |
| 7 transform-origin: 50% 50%; | 7 transform-origin: 50% 50%; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #expected { | 10 #expected { |
| 11 background-color: green; | 11 background-color: green; |
| 12 transform: translate(200px, 10px) rotate(90deg) scale(1, 2) translate(10px,
20px) rotate(90deg) scale(1, 0.5); | 12 transform: translate(200px, 10px) rotate(90deg) scale(1, 2) translate(-10px,
-80px) scale(3, 4); |
| 13 } | 13 } |
| 14 </style> | 14 </style> |
| 15 | |
| 16 <p>There should be no red color boxes</p> | 15 <p>There should be no red color boxes</p> |
| 17 <div id="expected"></div> | 16 <div id="expected"></div> |
| OLD | NEW |