| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 div { |
| 6 width: 100px; |
| 7 height: 100px; |
| 8 position: absolute; |
| 9 transform-origin: 50% 50%; |
| 10 } |
| 11 |
| 12 #target { |
| 13 background-color: red; |
| 14 translate: 200px 10px; |
| 15 rotate: 90deg; |
| 16 scale: 1 2; |
| 17 transform: translate(10px, 20px) rotate(90deg) scale(1, 0.5); |
| 18 } |
| 19 #actual { |
| 20 background-color: green; |
| 21 transform: translate(200px, 10px) rotate(90deg) scale(1, 2) translate(10px,
20px) rotate(90deg) scale(1, 0.5); |
| 22 } |
| 23 </style> |
| 24 </head> |
| 25 |
| 26 <body> |
| 27 <p>There should be no red color boxes</p> |
| 28 <div id="target"></div> |
| 29 <div id="actual"></div> |
| 30 </body> |
| 31 </html> |
| OLD | NEW |