| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 div { | 5 div { |
| 6 width: 200px; | 6 width: 200px; |
| 7 height: 200px; | 7 height: 200px; |
| 8 -webkit-transform: rotateY(30deg) rotateX(-30deg); | 8 transform: rotateY(30deg) rotateX(-30deg); |
| 9 background: rgba(200, 200, 156, 1); | 9 background: rgba(200, 200, 156, 1); |
| 10 } | 10 } |
| 11 | 11 |
| 12 body { | 12 body { |
| 13 background: green; | 13 background: green; |
| 14 } | 14 } |
| 15 | 15 |
| 16 </style> | 16 </style> |
| 17 <!-- Test to validate that background blending is working properly for hardware
accelerated elements. | 17 <!-- Test to validate that background blending is working properly for hardware
accelerated elements. |
| 18 This also validates that background layers don't blend with any of the conte
nt below the accelerated element. --> | 18 This also validates that background layers don't blend with any of the conte
nt below the accelerated element. --> |
| 19 </head> | 19 </head> |
| 20 <body> | 20 <body> |
| 21 <div></div> | 21 <div></div> |
| 22 </body> | 22 </body> |
| OLD | NEW |